Changeset 36228
- Timestamp:
- 12/22/09 15:45:19 (3 years ago)
- Location:
- lang/c/swifty/trunk
- Files:
-
- 2 modified
-
configure.ac (modified) (1 diff)
-
libtool (modified) (44 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lang/c/swifty/trunk/configure.ac
r32226 r36228 11 11 12 12 PROC_TYPE=`uname -p` 13 if test "$PROC_TYPE" = "i386" -o "$PROC_TYPE" = "i686" -o "$PROC_TYPE" = "x86_64"; then 13 if test "$PROC_TYPE" = "i386" -o "$PROC_TYPE" = "i686" -o "$PROC_TYPE" = "x86_64" -o "$PROC_TYPE" = "unknown"; then 14 if test "$PROC_TYPE" = "unknown" ; then 15 echo "Could not obtain CPU informaiton, assuming i386 or x86_64" >&2 16 fi 14 17 MB_CFLAGS="-msse2" 15 18 AC_DEFINE([CPU_X86],1,[i386 or i686 or x86_64]) -
lang/c/swifty/trunk/libtool
r32226 r36228 1 #! /bin/ sh1 #! /bin/bash 2 2 3 3 # libtoolT - Provide generalized library-building support services. … … 5 5 # NOTE: Changes made to this file will be lost: look at ltmain.sh. 6 6 # 7 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 7 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 8 8 # Free Software Foundation, Inc. 9 9 # … … 23 23 # You should have received a copy of the GNU General Public License 24 24 # along with this program; if not, write to the Free Software 25 # Foundation, Inc., 5 9 Temple Place - Suite 330, Boston, MA 02111-1307, USA.25 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 26 26 # 27 27 # As a special exception to the GNU General Public License, if you … … 31 31 32 32 # A sed program that does not truncate output. 33 SED="/ usr/bin/sed"33 SED="/bin/sed" 34 34 35 35 # Sed that helps us avoid accidentally triggering echo(1) options like -n. 36 Xsed="/ usr/bin/sed -es/^X//"36 Xsed="/bin/sed -e 1s/^X//" 37 37 38 38 # The HP-UX ksh and POSIX shell print the target directory to stdout 39 39 # if CDPATH is set. 40 if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi 40 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH 41 41 42 42 # The names of the tagged configurations supported by this script. … … 45 45 # ### BEGIN LIBTOOL CONFIG 46 46 47 # Libtool was configured on host KazMac.local: 48 49 # Set the command separator (default: ~) 50 _S_=${LIBTOOL_CMD_SEP-\~} 47 # Libtool was configured on host kazpro.in.labs.cybozu.co.jp: 51 48 52 49 # Shell to use when invoking shell scripts. 53 SHELL="/bin/ sh"50 SHELL="/bin/bash" 54 51 55 52 # Whether or not to build shared libraries. … … 70 67 # The host system. 71 68 host_alias= 72 host=i386-apple-darwin8.10.1 69 host=x86_64-unknown-linux-gnu 70 host_os=linux-gnu 71 72 # The build system. 73 build_alias= 74 build=x86_64-unknown-linux-gnu 75 build_os=linux-gnu 73 76 74 77 # An echo program that does not interpret backslashes. … … 82 85 LTCC="gcc" 83 86 87 # LTCC compiler flags. 88 LTCFLAGS="-g -O2" 89 84 90 # A language-specific compiler. 85 91 CC="gcc" … … 89 95 90 96 # An ERE matcher. 91 EGREP=" grep -E"97 EGREP="/bin/grep -E" 92 98 93 99 # The linker used to build libraries. 94 LD="/usr/bin/ld "100 LD="/usr/bin/ld -m elf_x86_64" 95 101 96 102 # Whether we need hard or soft links. … … 98 104 99 105 # A BSD-compatible nm program. 100 NM="/usr/bin/nm - p"106 NM="/usr/bin/nm -B" 101 107 102 108 # A symbol stripping program 103 STRIP= strip109 STRIP="strip" 104 110 105 111 # Used to examine libraries when file_magic_cmd begins "file" … … 120 126 # How to create reloadable object files. 121 127 reload_flag=" -r" 122 reload_cmds="\$ CC -nostdlib -Xlinker\$reload_flag \$archargs-o \$output\$reload_objs"128 reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" 123 129 124 130 # How to pass a linker flag through the compiler. … … 132 138 133 139 # Shared library suffix (normally ".so"). 134 shrext ='$(test .$module = .yes && echo .so || echo .dylib)'140 shrext_cmds='.so' 135 141 136 142 # Executable file suffix (normally ""). … … 138 144 139 145 # Additional compiler flags for building library objects. 140 pic_flag=" -f no-common-DPIC"146 pic_flag=" -fPIC -DPIC" 141 147 pic_mode=default 142 148 143 149 # What is the maximum length of a command? 144 max_cmd_len= 65536150 max_cmd_len=98304 145 151 146 152 # Does compiler simultaneously support -c and -o options? 147 153 compiler_c_o="yes" 148 154 149 # Must we lock files when doing compilation ?155 # Must we lock files when doing compilation? 150 156 need_locks="no" 151 157 … … 172 178 173 179 # Compiler flag to allow reflexive dlopens. 174 export_dynamic_flag_spec=" "180 export_dynamic_flag_spec="\${wl}--export-dynamic" 175 181 176 182 # Compiler flag to generate shared objects directly from archives. 177 whole_archive_flag_spec=" -all_load \$convenience"183 whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive" 178 184 179 185 # Compiler flag to generate thread-safe objects. … … 181 187 182 188 # Library versioning type. 183 version_type= darwin189 version_type=linux 184 190 185 191 # Format of library name prefix. … … 188 194 # List of archive names. First name is the real one, the rest are links. 189 195 # The last name is the one that the linker finds with -lNAME. 190 library_names_spec="\${libname}\${release}\${ major}\$shared_ext \${libname}\$shared_ext \${libname}\${release}\${versuffix}\$shared_ext"196 library_names_spec="\${libname}\${release}\${shared_ext}\$versuffix \${libname}\${release}\${shared_ext}\$major \$libname\${shared_ext}" 191 197 192 198 # The coded name of the library, if different from the real name. 193 soname_spec="\${libname}\${release}\${ major}\$shared_ext"199 soname_spec="\${libname}\${release}\${shared_ext}\$major" 194 200 195 201 # Commands used to build and install an old-style archive. 196 202 RANLIB="ranlib" 197 old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs \$old_deplibs${_S_}\$RANLIB \$oldlib"198 old_postinstall_cmds=" \$RANLIB \$oldlib${_S_}chmod 644\$oldlib"203 old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$oldlib" 204 old_postinstall_cmds="chmod 644 \$oldlib~\$RANLIB \$oldlib" 199 205 old_postuninstall_cmds="" 200 206 … … 206 212 207 213 # Commands used to build and install a shared archive. 208 archive_cmds="\$CC -dynamiclib \$archargs \$allow_undefined_flag -o \$lib \$libobjs \$deplibs\$compiler_flags -install_name \$rpath/\$soname \$verstring" 209 archive_expsym_cmds="sed -e \\\"s,#.*,,\\\" -e \\\"s,^[ ]*,,\\\" -e \\\"s,^\\\\(..*\\\\),_&,\\\" < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym${_S_}\$CC -dynamiclib \$archargs \$allow_undefined_flag -o \$lib \$libobjs \$deplibs\$compiler_flags -install_name \$rpath/\$soname \$verstring${_S_}nmedit -s \$output_objdir/\${libname}-symbols.expsym \${lib}" 214 archive_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib" 215 archive_expsym_cmds="\$echo \\\"{ global:\\\" > \$output_objdir/\$libname.ver~ 216 cat \$export_symbols | sed -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$output_objdir/\$libname.ver~ 217 \$echo \\\"local: *; };\\\" >> \$output_objdir/\$libname.ver~ 218 \$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-version-script \${wl}\$output_objdir/\$libname.ver -o \$lib" 210 219 postinstall_cmds="" 211 220 postuninstall_cmds="" 212 221 213 222 # Commands used to build a loadable module (assumed same as above if empty) 214 module_cmds=" \$CC -bundle \$archargs \$allow_undefined_flag -o \$lib \$libobjs \$deplibs\$compiler_flags"215 module_expsym_cmds=" sed -e \\\"s,#.*,,\\\" -e \\\"s,^[ ]*,,\\\" -e \\\"s,^\\\\(..*\\\\),_&,\\\" < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym${_S_}\$CC -bundle \$archargs \$allow_undefined_flag -o \$lib \$libobjs \$deplibs\$compiler_flags${_S_}nmedit -s \$output_objdir/\${libname}-symbols.expsym \${lib}"223 module_cmds="" 224 module_expsym_cmds="" 216 225 217 226 # Commands to strip libraries. 218 old_striplib=" "219 striplib=" "227 old_striplib="strip --strip-debug" 228 striplib="strip --strip-unneeded" 220 229 221 230 # Dependencies to place before the objects being linked to create a … … 235 244 postdeps="" 236 245 246 # The directories searched by this compiler when creating a shared 247 # library 248 compiler_lib_search_dirs="" 249 237 250 # The library search path used internally by the compiler when linking 238 251 # a shared library. … … 243 256 244 257 # Command to use when deplibs_check_method == file_magic. 245 file_magic_cmd=" /usr/bin/file -L"258 file_magic_cmd="\$MAGIC_CMD" 246 259 247 260 # Flag that allows shared libraries with undefined symbols to be built. 248 allow_undefined_flag=" -flat_namespace -undefined suppress"261 allow_undefined_flag="" 249 262 250 263 # Flag that forces no undefined symbols. … … 252 265 253 266 # Commands used to finish a libtool library installation in a directory. 254 finish_cmds=" "267 finish_cmds="PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir" 255 268 256 269 # Same as above, but a single script fragment to be evaled but not shown. … … 258 271 259 272 # Take the output of nm and produce a listing of raw symbols and C names. 260 global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ BCDEGRST][BCDEGRST]*\\)[ ][ ]*\\(_\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'"273 global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'" 261 274 262 275 # Transform the output of nm in a proper C declaration … … 267 280 268 281 # This is the shared library runtime path variable. 269 runpath_var= 282 runpath_var=LD_RUN_PATH 270 283 271 284 # This is the shared library path variable. 272 shlibpath_var= DYLD_LIBRARY_PATH285 shlibpath_var=LD_LIBRARY_PATH 273 286 274 287 # Is shlibpath searched before the hard-coded library search path? 275 shlibpath_overrides_runpath= yes288 shlibpath_overrides_runpath=no 276 289 277 290 # How to hardcode a shared library path into an executable. … … 279 292 280 293 # Whether we should hardcode library paths into libraries. 281 hardcode_into_libs= no294 hardcode_into_libs=yes 282 295 283 296 # Flag to hardcode $libdir into a binary during linking. 284 297 # This must work even if $libdir does not exist. 285 hardcode_libdir_flag_spec=" "298 hardcode_libdir_flag_spec="\${wl}--rpath \${wl}\$libdir" 286 299 287 300 # If ld is used when linking, flag to hardcode $libdir into … … 307 320 # Set to yes if building a shared library automatically hardcodes DIR into the library 308 321 # and all subsequent libraries and executables linked against it. 309 hardcode_automatic= yes322 hardcode_automatic=no 310 323 311 324 # Variables whose values should be saved in libtool wrapper scripts and 312 325 # restored at relink time. 313 variables_saved_for_relink="PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"326 variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" 314 327 315 328 # Whether libtool must link a program against all its dependency libraries. 316 link_all_deplibs= yes329 link_all_deplibs=no 317 330 318 331 # Compile-time system search path for libraries 319 sys_lib_search_path_spec=" /usr/lib/gcc/i686-apple-darwin8/4.0.1/ /usr/lib/gcc/i686-apple-darwin8/4.0.1/ /usr/lib/gcc/i686-apple-darwin8/4.0.1/../../../../i686-apple-darwin8/lib/i686-apple-darwin8/4.0.1/ /usr/lib/gcc/i686-apple-darwin8/4.0.1/../../../../i686-apple-darwin8/lib/ /usr/lib/gcc/i686-apple-darwin8/4.0.1/../../../i686-apple-darwin8/4.0.1/ /usr/lib/gcc/i686-apple-darwin8/4.0.1/../../../ /lib/i686-apple-darwin8/4.0.1/ /lib/ /usr/lib/i686-apple-darwin8/4.0.1/ /usr/lib/ /lib /usr/lib /usr/local/lib"332 sys_lib_search_path_spec="/usr/lib/gcc/x86_64-linux-gnu/4.2.4 /usr/lib /lib" 320 333 321 334 # Run-time system search path for libraries 322 sys_lib_dlsearch_path_spec="/ usr/local/lib /lib /usr/lib"335 sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/local/lib /usr/local/lib /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu " 323 336 324 337 # Fix the shell variable $srcfile for the compiler. … … 335 348 336 349 # Symbols that should not be listed in the preloaded symbols. 337 exclude_expsyms="_GLOBAL_OFFSET_TABLE_ "350 exclude_expsyms="_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*" 338 351 339 352 # Symbols that must always be exported. … … 7215 7228 # ### BEGIN LIBTOOL TAG CONFIG: CXX 7216 7229 7217 # Libtool was configured on host KazMac.local: 7218 7219 # Set the command separator (default: ~) 7220 _S_=${LIBTOOL_CMD_SEP-\~} 7230 # Libtool was configured on host kazpro.in.labs.cybozu.co.jp: 7221 7231 7222 7232 # Shell to use when invoking shell scripts. 7223 SHELL="/bin/ sh"7233 SHELL="/bin/bash" 7224 7234 7225 7235 # Whether or not to build shared libraries. … … 7236 7246 7237 7247 # Whether or not to optimize for fast installation. 7238 fast_install= needless7248 fast_install=yes 7239 7249 7240 7250 # The host system. 7241 7251 host_alias= 7242 host=i386-apple-darwin8.10.1 7252 host=x86_64-unknown-linux-gnu 7253 host_os=linux-gnu 7254 7255 # The build system. 7256 build_alias= 7257 build=x86_64-unknown-linux-gnu 7258 build_os=linux-gnu 7243 7259 7244 7260 # An echo program that does not interpret backslashes. … … 7252 7268 LTCC="gcc" 7253 7269 7270 # LTCC compiler flags. 7271 LTCFLAGS="-g -O2" 7272 7254 7273 # A language-specific compiler. 7255 7274 CC="g++" … … 7259 7278 7260 7279 # An ERE matcher. 7261 EGREP=" grep -E"7280 EGREP="/bin/grep -E" 7262 7281 7263 7282 # The linker used to build libraries. 7264 LD="/usr/bin/ld "7283 LD="/usr/bin/ld -m elf_x86_64" 7265 7284 7266 7285 # Whether we need hard or soft links. … … 7268 7287 7269 7288 # A BSD-compatible nm program. 7270 NM="/usr/bin/nm - p"7289 NM="/usr/bin/nm -B" 7271 7290 7272 7291 # A symbol stripping program 7273 STRIP= strip7292 STRIP="strip" 7274 7293 7275 7294 # Used to examine libraries when file_magic_cmd begins "file" … … 7290 7309 # How to create reloadable object files. 7291 7310 reload_flag=" -r" 7292 reload_cmds="\$ CC -nostdlib -Xlinker\$reload_flag \$archargs-o \$output\$reload_objs"7311 reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" 7293 7312 7294 7313 # How to pass a linker flag through the compiler. … … 7302 7321 7303 7322 # Shared library suffix (normally ".so"). 7304 shrext ='$(test .$module = .yes && echo .so || echo .dylib)'7323 shrext_cmds='.so' 7305 7324 7306 7325 # Executable file suffix (normally ""). … … 7308 7327 7309 7328 # Additional compiler flags for building library objects. 7310 pic_flag=" -f no-common-DPIC"7329 pic_flag=" -fPIC -DPIC" 7311 7330 pic_mode=default 7312 7331 7313 7332 # What is the maximum length of a command? 7314 max_cmd_len= 655367333 max_cmd_len=98304 7315 7334 7316 7335 # Does compiler simultaneously support -c and -o options? 7317 7336 compiler_c_o="yes" 7318 7337 7319 # Must we lock files when doing compilation ?7338 # Must we lock files when doing compilation? 7320 7339 need_locks="no" 7321 7340 … … 7342 7361 7343 7362 # Compiler flag to allow reflexive dlopens. 7344 export_dynamic_flag_spec=" "7363 export_dynamic_flag_spec="\${wl}--export-dynamic" 7345 7364 7346 7365 # Compiler flag to generate shared objects directly from archives. 7347 whole_archive_flag_spec=" -all_load \$convenience"7366 whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive" 7348 7367 7349 7368 # Compiler flag to generate thread-safe objects. … … 7351 7370 7352 7371 # Library versioning type. 7353 version_type= darwin7372 version_type=linux 7354 7373 7355 7374 # Format of library name prefix. … … 7358 7377 # List of archive names. First name is the real one, the rest are links. 7359 7378 # The last name is the one that the linker finds with -lNAME. 7360 library_names_spec="\${libname}\${release}\${ major}\$shared_ext \${libname}\$shared_ext \${libname}\${release}\${versuffix}\$shared_ext"7379 library_names_spec="\${libname}\${release}\${shared_ext}\$versuffix \${libname}\${release}\${shared_ext}\$major \$libname\${shared_ext}" 7361 7380 7362 7381 # The coded name of the library, if different from the real name. 7363 soname_spec="\${libname}\${release}\${ major}\$shared_ext"7382 soname_spec="\${libname}\${release}\${shared_ext}\$major" 7364 7383 7365 7384 # Commands used to build and install an old-style archive. 7366 7385 RANLIB="ranlib" 7367 old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs \$old_deplibs${_S_}\$RANLIB \$oldlib"7368 old_postinstall_cmds=" \$RANLIB \$oldlib${_S_}chmod 644\$oldlib"7386 old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$oldlib" 7387 old_postinstall_cmds="chmod 644 \$oldlib~\$RANLIB \$oldlib" 7369 7388 old_postuninstall_cmds="" 7370 7389 … … 7376 7395 7377 7396 # Commands used to build and install a shared archive. 7378 archive_cmds="\$CC - dynamiclib \$archargs -single_module \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring"7379 archive_expsym_cmds=" sed -e \\\"s,#.*,,\\\" -e \\\"s,^[ ]*,,\\\" -e \\\"s,^\\\\(..*\\\\),_&,\\\" < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym${_S_}\$CC -dynamiclib \$archargs -single_module \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_S_}nmedit -s \$output_objdir/\${libname}-symbols.expsym \${lib}"7397 archive_cmds="\$CC -shared -nostdlib \$predep_objects \$libobjs \$deplibs \$postdep_objects \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib" 7398 archive_expsym_cmds="\$CC -shared -nostdlib \$predep_objects \$libobjs \$deplibs \$postdep_objects \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-retain-symbols-file \$wl\$export_symbols -o \$lib" 7380 7399 postinstall_cmds="" 7381 7400 postuninstall_cmds="" 7382 7401 7383 7402 # Commands used to build a loadable module (assumed same as above if empty) 7384 module_cmds=" \$CC -bundle \$archargs \${wl}-bind_at_load \$allow_undefined_flag -o \$lib \$libobjs \$deplibs\$compiler_flags"7385 module_expsym_cmds=" sed -e \\\"s,#.*,,\\\" -e \\\"s,^[ ]*,,\\\" -e \\\"s,^\\\\(..*\\\\),_&,\\\" < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym${_S_}\$CC -bundle \$archargs \$allow_undefined_flag -o \$lib \$libobjs \$deplibs\$compiler_flags${_S_}nmedit -s \$output_objdir/\${libname}-symbols.expsym \${lib}"7403 module_cmds="" 7404 module_expsym_cmds="" 7386 7405 7387 7406 # Commands to strip libraries. 7388 old_striplib=" "7389 striplib=" "7407 old_striplib="strip --strip-debug" 7408 striplib="strip --strip-unneeded" 7390 7409 7391 7410 # Dependencies to place before the objects being linked to create a 7392 7411 # shared library. 7393 predep_objects=" "7412 predep_objects="/usr/lib/gcc/x86_64-linux-gnu/4.2.4/../../../../lib/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.2.4/crtbeginS.o" 7394 7413 7395 7414 # Dependencies to place after the objects being linked to create a 7396 7415 # shared library. 7397 postdep_objects=" "7416 postdep_objects="/usr/lib/gcc/x86_64-linux-gnu/4.2.4/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/4.2.4/../../../../lib/crtn.o" 7398 7417 7399 7418 # Dependencies to place before the objects being linked to create a … … 7403 7422 # Dependencies to place after the objects being linked to create a 7404 7423 # shared library. 7405 postdeps="" 7424 postdeps="-lstdc++ -lm -lgcc_s -lc -lgcc_s" 7425 7426 # The directories searched by this compiler when creating a shared 7427 # library 7428 compiler_lib_search_dirs="/usr/lib/gcc/x86_64-linux-gnu/4.2.4 /usr/lib/gcc/x86_64-linux-gnu/4.2.4 /usr/lib/gcc/x86_64-linux-gnu/4.2.4/../../../../lib /lib/../lib /usr/lib/../lib /usr/lib/gcc/x86_64-linux-gnu/4.2.4/../../.." 7406 7429 7407 7430 # The library search path used internally by the compiler when linking 7408 7431 # a shared library. 7409 compiler_lib_search_path=" "7432 compiler_lib_search_path="-L/usr/lib/gcc/x86_64-linux-gnu/4.2.4 -L/usr/lib/gcc/x86_64-linux-gnu/4.2.4 -L/usr/lib/gcc/x86_64-linux-gnu/4.2.4/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.2.4/../../.." 7410 7433 7411 7434 # Method to check whether dependent libraries are shared objects. … … 7413 7436 7414 7437 # Command to use when deplibs_check_method == file_magic. 7415 file_magic_cmd=" /usr/bin/file -L"7438 file_magic_cmd="\$MAGIC_CMD" 7416 7439 7417 7440 # Flag that allows shared libraries with undefined symbols to be built. 7418 allow_undefined_flag=" -flat_namespace -undefined suppress"7441 allow_undefined_flag="" 7419 7442 7420 7443 # Flag that forces no undefined symbols. … … 7422 7445 7423 7446 # Commands used to finish a libtool library installation in a directory. 7424 finish_cmds=" "7447 finish_cmds="PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir" 7425 7448 7426 7449 # Same as above, but a single script fragment to be evaled but not shown. … … 7428 7451 7429 7452 # Take the output of nm and produce a listing of raw symbols and C names. 7430 global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ BCDEGRST][BCDEGRST]*\\)[ ][ ]*\\(_\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'"7453 global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'" 7431 7454 7432 7455 # Transform the output of nm in a proper C declaration … … 7437 7460 7438 7461 # This is the shared library runtime path variable. 7439 runpath_var= 7462 runpath_var=LD_RUN_PATH 7440 7463 7441 7464 # This is the shared library path variable. 7442 shlibpath_var= DYLD_LIBRARY_PATH7465 shlibpath_var=LD_LIBRARY_PATH 7443 7466 7444 7467 # Is shlibpath searched before the hard-coded library search path? 7445 shlibpath_overrides_runpath= yes7468 shlibpath_overrides_runpath=no 7446 7469 7447 7470 # How to hardcode a shared library path into an executable. … … 7449 7472 7450 7473 # Whether we should hardcode library paths into libraries. 7451 hardcode_into_libs= no7474 hardcode_into_libs=yes 7452 7475 7453 7476 # Flag to hardcode $libdir into a binary during linking. 7454 7477 # This must work even if $libdir does not exist. 7455 hardcode_libdir_flag_spec=" "7478 hardcode_libdir_flag_spec="\${wl}--rpath \${wl}\$libdir" 7456 7479 7457 7480 # If ld is used when linking, flag to hardcode $libdir into … … 7477 7500 # Set to yes if building a shared library automatically hardcodes DIR into the library 7478 7501 # and all subsequent libraries and executables linked against it. 7479 hardcode_automatic= yes7502 hardcode_automatic=no 7480 7503 7481 7504 # Variables whose values should be saved in libtool wrapper scripts and 7482 7505 # restored at relink time. 7483 variables_saved_for_relink="PATH DYLD_LIBRARY_PATHGCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"7506 variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" 7484 7507 7485 7508 # Whether libtool must link a program against all its dependency libraries. 7486 link_all_deplibs= yes7509 link_all_deplibs=no 7487 7510 7488 7511 # Compile-time system search path for libraries 7489 sys_lib_search_path_spec=" /usr/lib/gcc/i686-apple-darwin8/4.0.1/ /usr/lib/gcc/i686-apple-darwin8/4.0.1/ /usr/lib/gcc/i686-apple-darwin8/4.0.1/../../../../i686-apple-darwin8/lib/i686-apple-darwin8/4.0.1/ /usr/lib/gcc/i686-apple-darwin8/4.0.1/../../../../i686-apple-darwin8/lib/ /usr/lib/gcc/i686-apple-darwin8/4.0.1/../../../i686-apple-darwin8/4.0.1/ /usr/lib/gcc/i686-apple-darwin8/4.0.1/../../../ /lib/i686-apple-darwin8/4.0.1/ /lib/ /usr/lib/i686-apple-darwin8/4.0.1/ /usr/lib/ /lib /usr/lib /usr/local/lib"7512 sys_lib_search_path_spec="/usr/lib/gcc/x86_64-linux-gnu/4.2.4 /usr/lib /lib" 7490 7513 7491 7514 # Run-time system search path for libraries 7492 sys_lib_dlsearch_path_spec="/ usr/local/lib /lib /usr/lib"7515 sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/local/lib /usr/local/lib /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu " 7493 7516 7494 7517 # Fix the shell variable $srcfile for the compiler. … … 7505 7528 7506 7529 # Symbols that should not be listed in the preloaded symbols. 7507 exclude_expsyms=" "7530 exclude_expsyms="_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*" 7508 7531 7509 7532 # Symbols that must always be exported.
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)