The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > High Level Programming
Google UNIX.COM


High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
debugging shared objects yakari UNIX for Advanced & Expert Users 0 10-03-2006 09:14 AM
Shared Objects Yura UNIX for Advanced & Expert Users 3 09-02-2005 09:25 AM
Linking with shared objects disclaimer High Level Programming 2 05-03-2005 12:11 AM
Shared Objects mrgubbala UNIX for Dummies Questions & Answers 3 03-01-2005 10:35 PM
Runtime Linking shared Objects dneely High Level Programming 3 10-11-2001 08:05 AM

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 05-06-2008
Registered User
 

Join Date: May 2008
Posts: 1
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Spurl this Post!
g++ with -frepo and shared objects...

G'day,

I have been working with a large application that makes extensive use of templates. When compiled under Unix (with g++), this sees some rather impressive bloat. I have been trying to make a temporary quick-fix by using the -frepo option, which results in dramatically smaller shared objects, but the executables no longer link. I suspect that collect2 is not being called when the -shared flag is used, which would be the cause of this. Here is a simple example I created:

template.h:
Code:
template <class T>
T tmax(T a, T b)
{
  return a > b ? a : b ;
}
test.h:
Code:
int calltmaxint(int i, int j);
test.cpp:
Code:
#include "template.h"
#include "test.h"

int calltmaxint(int i, int j)
{
  return tmax(i, j);
}
main.cpp:
Code:
#include <iostream>
using namespace std ;
#include "test.h"

int main(void)
{
  cout << calltmaxint(10, 15) << endl ;

  return 0;
}
The command line is then as follows:
Code:
$ g++ -c -frepo -fPIC test.cpp
$ g++ -shared test.o -o libtest.so
$ g++ -c -frepo main.cpp
$ g++ -L. -ltest main.o -o main
./libtest.so: undefined reference to `int tmax<int>(int, int)'
collect2: ld returned 1 exit status
I have attempted on Solaris 10 with g++ 3.6.4 and Debian stable with g++ 4.1.1-15 with the same result. I have not been able to find any answers with Google on this, so I am rather hoping someone here can enlighten me. Can I use -frepo with shared objects? If so, what am I doing wrong? If not, will I be able to use the -fexternal-templates option to reduce the size?
Reply With Quote
Google UNIX.COM
Forum Sponsor
Reply

Thread Tools
Display Modes


The 50 most popular UNIX and Linux searches.
Google Search Cloud for The UNIX and Linux Forums
"inappropriate ioctl for device" 421 service not available, remote server has closed connection ^m arg list too long ascii eof autosys awk trim bash eval bash exec bash for loop boot: cannot open kernel/sparcv9/unix close_wait command copy/move folder in unix curses.h dead.letter export display find grep grep multiple lines grep or grep recursive grep unique inappropriate ioctl for device logrotate.conf lynx javascript mailx attachment mget mtime perl array length ping port read awk output into multiple variables replace space by comma , perl script scp recursive segmentation fault(coredump) sftp script snoop unix stale nfs file handle syn_sent tar exclude unix unix .profile unix com unix forum unix forums unix interview questions unix memory usage unix mtime unix simulator unix.com vi tab size while loop within while loop shell script


All times are GMT -7. The time now is 03:34 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger Visit The Global Fact Book

Content Relevant URLs by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101