Hi, Following is the part of libtool script:-
# The directories searched by this compiler when creating a shared library. compiler_lib_search_dirs="/usr/local/lib/gcc/sparc-sun-solaris2.10/3.4.6 /usr/ccs/bin /usr/ccs/lib /usr/ local/lib/gcc/sparc-sun-solaris2.10/3.4.6/../../.." # Dependencies to place before and after the objects being linked to # create a shared library. predep_objects="/usr/local/lib/gcc/sparc-sun-solaris2.10/3.4.6/crti.o /usr/ccs/lib/values-Xa.o /usr/loca l/lib/gcc/sparc-sun-solaris2.10/3.4.6/crtbegin.o" postdep_objects="/usr/local/lib/gcc/sparc-sun-solaris2.10/3.4.6/crtend.o /usr/local/lib/gcc/sparc-sun-so laris2.10/3.4.6/crtn.o" predeps="" postdeps="-lstdc++ -lm -lgcc_s -lgcc_s" # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path="-L/usr/local/lib/gcc/sparc-sun-solaris2.10/3.4.6 -L/usr/ccs/bin -L/usr/ccs/lib -L/usr/local/lib/gcc/sparc-sun-solaris2.10/3.4.6/../../.." This libtool script gets created when I configure a package prior to compile. In the script ( pasted above) there is a postdeps flags that seems to cause problems. Any ideas on how to disable this ? Thanks!!! -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Maciej Blizinski Sent: Tuesday, April 12, 2011 3:20 PM To: Questions and discussions Subject: Re: [csw-users] GCC4 ld Warnings 2011/4/12 Kapoor, Nitin <[email protected]>: > Do you know where it would come from ("/opt/csw/gcc4/lib/libstdc++.so") ? The > only place where I have to pass the /opt/csw/gcc4/lib is when I configure a > package. Two ideas about the libstdc++.so reference: - it's volunteered by the build system - it comes from a *-config command of one of the dependencies The *-config commands can return ldflags which are later used in the build process. For example: $ libpng-config --ldflags -L/opt/csw/lib -lpng12 Try looking at the config.log file of your build, maybe it'll contain some hints. If not, look at all the dependencies, locate their *-config scripts and see if they return libstdc++.so if you call them with e.g. --libs or --ldflags. Maciej _______________________________________________ users mailing list [email protected] https://lists.opencsw.org/mailman/listinfo/users - This message is intended only for the addressee and may contain information that is company confidential or privileged. Any technical data in this message may be exported only in accordance with the U.S. International Traffic in Arms Regulations (22 CFR Parts 120-130) or the Export Administration Regulations (15 CFR Parts 730-774). Unauthorized use is strictly prohibited and may be unlawful. If you are not the intended recipient, or the person responsible for delivering to the intended recipient, you should not read, copy, disclose or otherwise use this message. If you have received this email in error, please delete it, and advise the sender immediately. -
_______________________________________________ users mailing list [email protected] https://lists.opencsw.org/mailman/listinfo/users
