source: trunk/src/binutils/ltcf-c.sh@ 896

Last change on this file since 896 was 618, checked in by bird, 22 years ago

Joined the port of 2.11.2 with 2.14.

  • Property cvs2svn:cvs-rev set to 1.4
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 32.0 KB
Line 
1#### This script is meant to be sourced by ltconfig.
2
3# ltcf-c.sh - Create a C compiler specific configuration
4#
5# Copyright (C) 1996-2000, 2001 Free Software Foundation, Inc.
6# Originally by Gordon Matzigkeit <[email protected]>, 1996
7#
8# This file is free software; you can redistribute it and/or modify it
9# under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 2 of the License, or
11# (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16# General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21#
22# As a special exception to the GNU General Public License, if you
23# distribute this file as part of a program that contains a
24# configuration script generated by Autoconf, you may include it under
25# the same distribution terms that you use for the rest of that program.
26
27
28# Source file extension for C test sources.
29ac_ext=c
30
31# Object file extension for compiled C test sources.
32objext=o
33
34# Code to be used in simple compile tests
35lt_simple_compile_test_code="int some_variable = 0;"
36
37# Code to be used in simple link tests
38lt_simple_link_test_code='main(){return(0);}'
39
40## Linker Characteristics
41case $host_os in
42cygwin* | mingw*)
43 # FIXME: the MSVC++ port hasn't been tested in a loooong time
44 # When not using gcc, we currently assume that we are using
45 # Microsoft Visual C++.
46 if test "$with_gcc" != yes; then
47 with_gnu_ld=no
48 fi
49 ;;
50
51esac
52
53ld_shlibs=yes
54if test "$with_gnu_ld" = yes; then
55 # If archive_cmds runs LD, not CC, wlarc should be empty
56 wlarc='${wl}'
57
58 # See if GNU ld supports shared libraries.
59 case $host_os in
60 aix3* | aix4* | aix5*)
61 # On AIX/PPC, the GNU linker is very broken
62 if test "$host_cpu" != ia64; then
63 ld_shlibs=no
64 cat <<EOF 1>&2
65
66*** Warning: the GNU linker, at least up to release 2.9.1, is reported
67*** to be unable to reliably create shared libraries on AIX.
68*** Therefore, libtool is disabling shared libraries support. If you
69*** really care for shared libraries, you may want to modify your PATH
70*** so that a non-GNU linker is found, and then restart.
71
72EOF
73 fi
74 ;;
75
76 amigaos*)
77 archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
78 hardcode_libdir_flag_spec='-L$libdir'
79 hardcode_minus_L=yes
80
81 # Samuel A. Falvo II <[email protected]> reports
82 # that the semantics of dynamic libraries on AmigaOS, at least up
83 # to version 4, is to share data among multiple programs linked
84 # with the same dynamic library. Since this doesn't match the
85 # behavior of shared libraries on other platforms, we can use
86 # them.
87 ld_shlibs=no
88 ;;
89
90 beos*)
91 if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
92 allow_undefined_flag=unsupported
93 # Joseph Beckenbach <[email protected]> says some releases of gcc
94 # support --undefined. This deserves some investigation. FIXME
95 archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
96 else
97 ld_shlibs=no
98 fi
99 ;;
100
101 cygwin* | mingw*)
102 # hardcode_libdir_flag_spec is actually meaningless, as there is
103 # no search path for DLLs.
104 hardcode_libdir_flag_spec='-L$libdir'
105 allow_undefined_flag=unsupported
106 always_export_symbols=yes
107
108 extract_expsyms_cmds='test -f $output_objdir/impgen.c || \
109 sed -e "/^# \/\* impgen\.c starts here \*\//,/^# \/\* impgen.c ends here \*\// { s/^# //; p; }" -e d < $0 > $output_objdir/impgen.c~
110 test -f $output_objdir/impgen.exe || (cd $output_objdir && \
111 if test "x$BUILD_CC" != "x" ; then $BUILD_CC -o impgen impgen.c ; \
112 else $CC -o impgen impgen.c ; fi)~
113 $output_objdir/impgen $dir/$soroot > $output_objdir/$soname-def'
114
115 old_archive_from_expsyms_cmds='$DLLTOOL --as=$AS --dllname $soname --def $output_objdir/$soname-def --output-lib $output_objdir/$newlib'
116
117 # cygwin and mingw dlls have different entry points and sets of symbols
118 # to exclude.
119 # FIXME: what about values for MSVC?
120 dll_entry=__cygwin_dll_entry@12
121 dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12~
122 case $host_os in
123 mingw*)
124 # mingw values
125 dll_entry=_DllMainCRTStartup@12
126 dll_exclude_symbols=DllMain@12,DllMainCRTStartup@12,DllEntryPoint@12~
127 ;;
128 esac
129
130 # mingw and cygwin differ, and it's simplest to just exclude the union
131 # of the two symbol sets.
132 dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12,DllMainCRTStartup@12,DllEntryPoint@12
133
134 # recent cygwin and mingw systems supply a stub DllMain which the user
135 # can override, but on older systems we have to supply one (in ltdll.c)
136 if test "x$lt_cv_need_dllmain" = "xyes"; then
137 ltdll_obj='$output_objdir/$soname-ltdll.'"$objext "
138 ltdll_cmds='test -f $output_objdir/$soname-ltdll.c || sed -e "/^# \/\* ltdll\.c starts here \*\//,/^# \/\* ltdll.c ends here \*\// { s/^# //; p; }" -e d < $0 > $output_objdir/$soname-ltdll.c~
139 test -f $output_objdir/$soname-ltdll.$objext || (cd $output_objdir && $CC -c $soname-ltdll.c)~'
140 else
141 ltdll_obj=
142 ltdll_cmds=
143 fi
144
145 # Extract the symbol export list from an `--export-all' def file,
146 # then regenerate the def file from the symbol export list, so that
147 # the compiled dll only exports the symbol export list.
148 # Be careful not to strip the DATA tag left be newer dlltools.
149 export_symbols_cmds="$ltdll_cmds"'
150 $DLLTOOL --export-all --exclude-symbols '$dll_exclude_symbols' --output-def $output_objdir/$soname-def '$ltdll_obj'$libobjs $convenience~
151 sed -e "1,/EXPORTS/d" -e "s/ @ [0-9]*//" -e "s/ *;.*$//" < $output_objdir/$soname-def > $export_symbols'
152
153 # If the export-symbols file already is a .def file (1st line
154 # is EXPORTS), use it as is.
155 # If DATA tags from a recent dlltool are present, honour them!
156 archive_expsym_cmds='if test "x`head -1 $export_symbols`" = xEXPORTS; then
157 cp $export_symbols $output_objdir/$soname-def;
158 else
159 echo EXPORTS > $output_objdir/$soname-def;
160 _lt_hint=1;
161 cat $export_symbols | while read symbol; do
162 set dummy \$symbol;
163 case \[$]# in
164 2) echo " \[$]2 @ \$_lt_hint ; " >> $output_objdir/$soname-def;;
165 *) echo " \[$]2 @ \$_lt_hint \[$]3 ; " >> $output_objdir/$soname-def;;
166 esac;
167 _lt_hint=`expr 1 + \$_lt_hint`;
168 done;
169 fi~
170 '"$ltdll_cmds"'
171 $CC -Wl,--base-file,$output_objdir/$soname-base '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~
172 $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp~
173 $CC -Wl,--base-file,$output_objdir/$soname-base $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~
174 $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp --output-lib $output_objdir/$libname.dll.a~
175 $CC $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags'
176 ;;
177
178 darwin* | rhapsody*)
179 allow_undefined_flag='-undefined suppress'
180 archive_cmds='$CC `test .$module = .yes && echo -bundle || echo -dynamiclib` $allow_undefined_flag -o $lib $libobjs $deplibs $linkopts -install_name $rpath/$soname `test -n "$verstring" -a x$verstring != x0.0 && echo $verstring`'
181 # We need to add '_' to the symbols in $export_symbols first
182 #archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
183 hardcode_direct=yes
184 hardcode_shlibpath_var=no
185 whole_archive_flag_spec='-all_load $convenience'
186 ;;
187
188 netbsd*)
189 if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
190 archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
191 wlarc=
192 else
193 archive_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
194 archive_expsym_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
195 fi
196 ;;
197
198 solaris* | sysv5*)
199 if $LD -v 2>&1 | egrep 'BFD 2\.8' > /dev/null; then
200 ld_shlibs=no
201 cat <<EOF 1>&2
202
203*** Warning: The releases 2.8.* of the GNU linker cannot reliably
204*** create shared libraries on Solaris systems. Therefore, libtool
205*** is disabling shared libraries support. We urge you to upgrade GNU
206*** binutils to release 2.9.1 or newer. Another option is to modify
207*** your PATH or compiler configuration so that the native linker is
208*** used, and then restart.
209
210EOF