public inbox for java@gcc.gnu.org
 help / color / mirror / Atom feed
* Unrecognized option '-Wl,-rpath' for jv-convert
@ 2011-01-06 19:07 Gerald Pfeifer
  2011-01-06 19:22 ` Ralf Wildenhues
  0 siblings, 1 reply; 3+ messages in thread
From: Gerald Pfeifer @ 2011-01-06 19:07 UTC (permalink / raw)
  To: java; +Cc: gcc, Ralf Wildenhues, Loren James Rittle

I am trying to debug this, alas not very successfully so far and am
looking for a pointer or two.

This happens with head as well; binutils (/usr/local/bin/ld) is 2.20.1.


Note 1: This can be avoid configuring with --disable-rpath.  GCC 
understands --disable-rpath, yet the string "rpath" does not occur
in _any_ *.texi file.  Could someone donate a bit of documentation? 
I'll be happy to include that in our install documentation.

Note 2: I did not set -rpath to begin with, this is something libjava
does, and I am wondering whether this is correct to begin with?


libtool: link: /usr/nabil-files/pfeifer/porttest/gcc45/work/build/./gcc/gcj
-B/usr/nabil-files/pfeifer/porttest/gcc45/work/build/i386-portbld-freebsd7.2/libjava/
-B/usr/nabil-files/pfeifer/porttest/gcc45/work/build/./gcc/ 
-B/files/pfeifer//gcc45/i386-portbld-freebsd7.2/bin/ 
-B/files/pfeifer//gcc45/i386-portbld-freebsd7.2/lib/
-isystem /files/pfeifer//gcc45/i386-portbld-freebsd7.2/include
-isystem /files/pfeifer//gcc45/i386-portbld-freebsd7.2/sys-include
-ffloat-store -fomit-frame-pointer -Usun -g -O2 -o .libs/jv-convert 
--main=gnu.gcj.convert.Convert -shared-libgcc -pthread 
-L/usr/nabil-files/pfeifer/porttest/gcc45/work/build/i386-portbld-freebsd7.2/libjava/.libs 
-L/usr/nabil-files/pfeifer/porttest/gcc45/work/build/i386-portbld-freebsd7.2/libjava
./.libs/libgcj.so -lrt -lz -pthread 
-Wl,-rpath -Wl,/files/pfeifer//gcc45/lib/gcc45
/usr/local/bin/ld: unrecognized option '-Wl,-rpath'
/usr/local/bin/ld: use the --help option for usage information 
collect2: ld returned 1 exit status
gmake[3]: *** [jv-convert] Error 1

where the actual invocation is the following:

/bin/sh ./libtool --tag=GCJ --mode=link 
/usr/nabil-files/pfeifer/porttest/gcc45/work/build/./gcc/gcj
-B/usr/nabil-files/pfeifer/porttest/gcc45/work/build/i386-portbld-freebsd7.2/libjava/ 
-B/usr/nabil-files/pfeifer/porttes t/gcc45/work/build/./gcc/ 
-B/files/pfeifer//gcc45/i386-portbld-freebsd7.2/bin/ 
-B/files/pfeifer//gcc45/i386-por tbld-freebsd7.2/lib/
-isystem /files/pfeifer//gcc45/i386-portbld-freebsd7.2/include
-isystem /files/pfeifer//gcc45/i386-portbld-freebsd7.2/sys-include 
-L/usr/nabil-files/pfeifer/porttest/gcc45/work/build/i386-portbld-freebsd7.2/libjava
-ffloat-store -fomit-frame-pointer -Usun -g -O2 -o jv-convert
--main=gnu.gcj.convert.Convert
-rpath /files/pfeifer//gcc45/lib/gcc45 -shared-libgcc -pthread 
-L/usr/nabil-files/pfeifer/porttest/gcc45/work /build/i386-portbld-freebsd7.2/libjava/.libs libgcj.la


Gerald

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Unrecognized option '-Wl,-rpath' for jv-convert
  2011-01-06 19:07 Unrecognized option '-Wl,-rpath' for jv-convert Gerald Pfeifer
@ 2011-01-06 19:22 ` Ralf Wildenhues
  2011-01-06 21:28   ` Gerald Pfeifer
  0 siblings, 1 reply; 3+ messages in thread
From: Ralf Wildenhues @ 2011-01-06 19:22 UTC (permalink / raw)
  To: Gerald Pfeifer; +Cc: java, gcc, Loren James Rittle

* Gerald Pfeifer wrote on Thu, Jan 06, 2011 at 08:07:26PM CET:
> I am trying to debug this, alas not very successfully so far and am
> looking for a pointer or two.
> 
> This happens with head as well; binutils (/usr/local/bin/ld) is 2.20.1.
> 
> 
> Note 1: This can be avoid configuring with --disable-rpath.  GCC 
> understands --disable-rpath, yet the string "rpath" does not occur
> in _any_ *.texi file.  Could someone donate a bit of documentation? 
> I'll be happy to include that in our install documentation.
> 
> Note 2: I did not set -rpath to begin with, this is something libjava
> does, and I am wondering whether this is correct to begin with?

Could be libtool issue or lib-link.m4 one (or gcj one).  Can you send
  ./libtool --tag=GCJ --config

output?

Does passing '-Wl,-rpath -Wl,/foo' to gcj work for a small example
program for you?

Thanks,
Ralf

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Unrecognized option '-Wl,-rpath' for jv-convert
  2011-01-06 19:22 ` Ralf Wildenhues
@ 2011-01-06 21:28   ` Gerald Pfeifer
  0 siblings, 0 replies; 3+ messages in thread
From: Gerald Pfeifer @ 2011-01-06 21:28 UTC (permalink / raw)
  To: Ralf Wildenhues; +Cc: java, gcc, Loren James Rittle

[-- Attachment #1: Type: TEXT/PLAIN, Size: 749 bytes --]

On Thu, 6 Jan 2011, Ralf Wildenhues wrote:
> Could be libtool issue or lib-link.m4 one (or gcj one).  Can you send
>   ./libtool --tag=GCJ --config
> output?

I assume you mean from libjava in the build tree?  Attached.

(Note this is now x86_64-portbld-freebsd8.2, newer than the original
report, but the same failure.)

> Does passing '-Wl,-rpath -Wl,/foo' to gcj work for a small example
> program for you?

I played around, and modifying the failing command line (that is,
with all those -B, -L,... options) I still got the same failure.

Note, if I remove -Wl,-rpath from that invocation, the failure is
still the same, so that seems to come from gcj itself?


(Again, why is -rpath being used here?  I thought we recommend
against it?)

Gerald

[-- Attachment #2: Type: TEXT/PLAIN, Size: 17339 bytes --]


# Which release of libtool.m4 was used?
macro_version=2.2.7a
macro_revision=1.3134

# Whether or not to build shared libraries.
build_libtool_libs=yes

# Whether or not to build static libraries.
build_old_libs=yes

# What type of objects to build.
pic_mode=default

# Whether or not to optimize for fast installation.
fast_install=needless

# Shell to use when invoking shell scripts.
SHELL="/bin/sh"

# An echo program that protects backslashes.
ECHO="printf %s\\n"

# The host system.
host_alias=x86_64-portbld-freebsd8.2
host=x86_64-portbld-freebsd8.2
host_os=freebsd8.2

# The build system.
build_alias=x86_64-portbld-freebsd8.2
build=x86_64-portbld-freebsd8.2
build_os=freebsd8.2

# A sed program that does not truncate output.
SED="/usr/bin/sed"

# Sed that helps us avoid accidentally triggering echo(1) options like -n.
Xsed="$SED -e 1s/^X//"

# A grep program that handles long lines.
GREP="/usr/bin/grep"

# An ERE matcher.
EGREP="/usr/bin/grep -E"

# A literal string matcher.
FGREP="/usr/bin/grep -F"

# A BSD- or MS-compatible name lister.
NM="/scratch/tmp/gerald/gcc46-work/build/./gcc/nm"

# Whether we need soft or hard links.
LN_S="ln -s"

# What is the maximum length of a command?
max_cmd_len=196608

# Object file suffix (normally "o").
objext=o

# Executable file suffix (normally "").
exeext=

# whether the shell understands "unset".
lt_unset=unset

# turn spaces into newlines.
SP2NL="tr \\040 \\012"

# turn newlines into spaces.
NL2SP="tr \\015\\012 \\040\\040"

# An object symbol dumper.
OBJDUMP="/home/gerald/8-amd64/bin/objdump"

# Method to check whether dependent libraries are shared objects.
deplibs_check_method="pass_all"

# Command to use when deplibs_check_method == "file_magic".
file_magic_cmd="\$MAGIC_CMD"

# The archiver.
AR="/home/gerald/8-amd64/bin/ar"
AR_FLAGS="rc"

# A symbol stripping program.
STRIP="strip"

# Commands used to install an old-style archive.
RANLIB="/home/gerald/8-amd64/bin/ranlib"
old_postinstall_cmds="chmod 644 \$oldlib~\$RANLIB \$oldlib"
old_postuninstall_cmds=""

# Whether to use a lock for old archive extraction.
lock_old_archive_extraction=no

# A C compiler.
LTCC="/scratch/tmp/gerald/gcc46-work/build/./gcc/xgcc -B/scratch/tmp/gerald/gcc46-work/build/./gcc/ -B/scratch/tmp/gerald/prefix/gcc46/x86_64-portbld-freebsd8.2/bin/ -B/scratch/tmp/gerald/prefix/gcc46/x86_64-portbld-freebsd8.2/lib/ -isystem /scratch/tmp/gerald/prefix/gcc46/x86_64-portbld-freebsd8.2/include -isystem /scratch/tmp/gerald/prefix/gcc46/x86_64-portbld-freebsd8.2/sys-include   "

# LTCC compiler flags.
LTCFLAGS="-g -O2 -pipe -I/home/gerald/8-amd64/include -fno-strict-aliasing"

# Take the output of nm and produce a listing of raw symbols and C names.
global_symbol_pipe="sed -n -e 's/^.*[	 ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[	 ][	 ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'"

# Transform the output of nm in a proper C declaration.
global_symbol_to_cdecl="sed -n -e 's/^T .* \\(.*\\)\$/extern int \\1();/p' -e 's/^[ABCDGIRSTW]* .* \\(.*\\)\$/extern char \\1;/p'"

# Transform the output of nm in a C name address pair.
global_symbol_to_c_name_address="sed -n -e 's/^: \\([^ ]*\\) \$/  {\\\"\\1\\\", (void *) 0},/p' -e 's/^[ABCDGIRSTW]* \\([^ ]*\\) \\([^ ]*\\)\$/  {\"\\2\", (void *) \\&\\2},/p'"

# Transform the output of nm in a C name address pair when lib prefix is needed.
global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \\([^ ]*\\) \$/  {\\\"\\1\\\", (void *) 0},/p' -e 's/^[ABCDGIRSTW]* \\([^ ]*\\) \\(lib[^ ]*\\)\$/  {\"\\2\", (void *) \\&\\2},/p' -e 's/^[ABCDGIRSTW]* \\([^ ]*\\) \\([^ ]*\\)\$/  {\"lib\\2\", (void *) \\&\\2},/p'"

# The name of the directory that contains temporary libtool files.
objdir=.libs

# Used to examine libraries when file_magic_cmd begins with "file".
MAGIC_CMD=file

# Must we lock files when doing compilation?
need_locks="no"

# Tool to manipulate archived DWARF debug symbol files on Mac OS X.
DSYMUTIL=""

# Tool to change global to local symbols on Mac OS X.
NMEDIT=""

# Tool to manipulate fat objects and archives on Mac OS X.
LIPO="lipo"

# ldd/readelf like tool for Mach-O binaries on Mac OS X.
OTOOL=""

# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
OTOOL64=""

# Old archive suffix (normally "a").
libext=a

# Shared library suffix (normally ".so").
shrext_cmds=".so"

# The commands to extract the exported symbol list from a shared archive.
extract_expsyms_cmds=""

# Variables whose values should be saved in libtool wrapper scripts and
# restored at link time.
variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"

# Do we need the "lib" prefix for modules?
need_lib_prefix=no

# Do we need a version for libraries?
need_version=no

# Library versioning type.
version_type=freebsd-elf

# Shared library runtime path variable.
runpath_var=LD_RUN_PATH

# Shared library path variable.
shlibpath_var=LD_LIBRARY_PATH

# Is shlibpath searched before the hard-coded library search path?
shlibpath_overrides_runpath=yes

# Format of library name prefix.
libname_spec="lib\$name"

# List of archive names.  First name is the real one, the rest are links.
# The last name is the one that the linker finds with -lNAME
library_names_spec="\${libname}\${release}\${shared_ext}\$versuffix \${libname}\${release}\${shared_ext} \$libname\${shared_ext}"

# The coded name of the library, if different from the real name.
soname_spec=""

# Permission mode override for installation of shared libraries.
install_override_mode=""

# Command to use after installation of a shared archive.
postinstall_cmds=""

# Command to use after uninstallation of a shared archive.
postuninstall_cmds=""

# Commands used to finish a libtool library installation in a directory.
finish_cmds=""

# As "finish_cmds", except a single script fragment to be evaled but
# not shown.
finish_eval=""

# Whether we should hardcode library paths into libraries.
hardcode_into_libs=yes

# Compile-time system search path for libraries.
sys_lib_search_path_spec="/scratch/tmp/gerald/gcc46-work/build/gcc /lib /usr/lib "

# Run-time system search path for libraries.
sys_lib_dlsearch_path_spec="/lib /usr/lib"

# Whether dlopen is supported.
dlopen_support=yes

# Whether dlopen of programs is supported.
dlopen_self=yes

# Whether dlopen of statically linked programs is supported.
dlopen_self_static=no

# Commands to strip libraries.
old_striplib="strip --strip-debug"
striplib="strip --strip-unneeded"


# The linker used to build libraries.
LD="/scratch/tmp/gerald/gcc46-work/build/./gcc/collect-ld"

# How to create reloadable object files.
reload_flag=" -r"
reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs"

# Commands used to build an old-style archive.
old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$oldlib"

# A language specific compiler.
CC="/scratch/tmp/gerald/gcc46-work/build/./gcc/xgcc -B/scratch/tmp/gerald/gcc46-work/build/./gcc/ -B/scratch/tmp/gerald/prefix/gcc46/x86_64-portbld-freebsd8.2/bin/ -B/scratch/tmp/gerald/prefix/gcc46/x86_64-portbld-freebsd8.2/lib/ -isystem /scratch/tmp/gerald/prefix/gcc46/x86_64-portbld-freebsd8.2/include -isystem /scratch/tmp/gerald/prefix/gcc46/x86_64-portbld-freebsd8.2/sys-include   "

# Is the compiler the GNU compiler?
with_gcc=yes

# Compiler flag to turn off builtin functions.
no_builtin_flag=" -fno-builtin"

# How to pass a linker flag through the compiler.
wl="-Wl,"

# Additional compiler flags for building library objects.
pic_flag=" -fPIC -DPIC"

# Compiler flag to prevent dynamic linking.
link_static_flag="-static"

# Does compiler simultaneously support -c and -o options?
compiler_c_o="yes"

# Whether or not to add -lc for building shared libraries.
build_libtool_need_lc=yes

# Whether or not to disallow shared libs when runtime libs are static.
allow_libtool_libs_with_static_runtimes=no

# Compiler flag to allow reflexive dlopens.
export_dynamic_flag_spec="\${wl}--export-dynamic"

# Compiler flag to generate shared objects directly from archives.
whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive"

# Whether the compiler copes with passing no objects directly.
compiler_needs_object="no"

# Create an old-style archive from a shared archive.
old_archive_from_new_cmds=""

# Create a temporary old-style archive to link instead of a shared archive.
old_archive_from_expsyms_cmds=""

# Commands used to build a shared archive.
archive_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib"
archive_expsym_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-retain-symbols-file \$wl\$export_symbols -o \$lib"

# Commands used to build a loadable module if different from building
# a shared archive.
module_cmds=""
module_expsym_cmds=""

# Whether we are building with GNU ld or not.
with_gnu_ld="yes"

# Flag that allows shared libraries with undefined symbols to be built.
allow_undefined_flag=""

# Flag that enforces no undefined symbols.
no_undefined_flag=""

# Flag to hardcode $libdir into a binary during linking.
# This must work even if $libdir does not exist
hardcode_libdir_flag_spec="\${wl}-rpath \${wl}\$libdir"

# If ld is used when linking, flag to hardcode $libdir into a binary
# during linking.  This must work even if $libdir does not exist.
hardcode_libdir_flag_spec_ld=""

# Whether we need a single "-rpath" flag with a separated argument.
hardcode_libdir_separator=""

# Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
# DIR into the resulting binary.
hardcode_direct=no

# Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
# DIR into the resulting binary and the resulting library dependency is
# "absolute",i.e impossible to change by setting ${shlibpath_var} if the
# library is relocated.
hardcode_direct_absolute=no

# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
# into the resulting binary.
hardcode_minus_L=no

# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
# into the resulting binary.
hardcode_shlibpath_var=unsupported

# Set to "yes" if building a shared library automatically hardcodes DIR
# into the library and all subsequent libraries and executables linked
# against it.
hardcode_automatic=no

# Set to yes if linker adds runtime paths of dependent libraries
# to runtime path list.
inherit_rpath=no

# Whether libtool must link a program against all its dependency libraries.
link_all_deplibs=unknown

# Fix the shell variable $srcfile for the compiler.
fix_srcfile_path=""

# Set to "yes" if exported symbols are required.
always_export_symbols=no

# The commands to list exported symbols.
export_symbols_cmds="\$NM \$libobjs \$convenience | \$global_symbol_pipe | \$SED 's/.* //' | sort | uniq > \$export_symbols"

# Symbols that should not be listed in the preloaded symbols.
exclude_expsyms="_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*"

# Symbols that must always be exported.
include_expsyms=""

# Commands necessary for linking programs (against libraries) with templates.
prelink_cmds=""

# Specify filename containing input files.
file_list_spec=""

# How to hardcode a shared library path into an executable.
hardcode_action=immediate

# The directories searched by this compiler when creating a shared library.
compiler_lib_search_dirs=""

# Dependencies to place before and after the objects being linked to
# create a shared library.
predep_objects=""
postdep_objects=""
predeps=""
postdeps=""

# The library search path used internally by the compiler when linking
# a shared library.
compiler_lib_search_path=""

# ### BEGIN LIBTOOL TAG CONFIG: GCJ

# The linker used to build libraries.
LD=""

# How to create reloadable object files.
reload_flag=""
reload_cmds=""

# Commands used to build an old-style archive.
old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$oldlib"

# A language specific compiler.
CC="/scratch/tmp/gerald/gcc46-work/build/./gcc/gcj -B/scratch/tmp/gerald/gcc46-work/build/x86_64-portbld-freebsd8.2/libjava/ -B/scratch/tmp/gerald/gcc46-work/build/./gcc/ -B/scratch/tmp/gerald/prefix/gcc46/x86_64-portbld-freebsd8.2/bin/ -B/scratch/tmp/gerald/prefix/gcc46/x86_64-portbld-freebsd8.2/lib/ -isystem /scratch/tmp/gerald/prefix/gcc46/x86_64-portbld-freebsd8.2/include -isystem /scratch/tmp/gerald/prefix/gcc46/x86_64-portbld-freebsd8.2/sys-include   "

# Is the compiler the GNU compiler?
with_gcc=

# Compiler flag to turn off builtin functions.
no_builtin_flag=" -fno-builtin"

# How to pass a linker flag through the compiler.
wl="-Wl,"

# Additional compiler flags for building library objects.
pic_flag=" -fPIC"

# Compiler flag to prevent dynamic linking.
link_static_flag="-static"

# Does compiler simultaneously support -c and -o options?
compiler_c_o="yes"

# Whether or not to add -lc for building shared libraries.
build_libtool_need_lc=no

# Whether or not to disallow shared libs when runtime libs are static.
allow_libtool_libs_with_static_runtimes=no

# Compiler flag to allow reflexive dlopens.
export_dynamic_flag_spec="\${wl}--export-dynamic"

# Compiler flag to generate shared objects directly from archives.
whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive"

# Whether the compiler copes with passing no objects directly.
compiler_needs_object="no"

# Create an old-style archive from a shared archive.
old_archive_from_new_cmds=""

# Create a temporary old-style archive to link instead of a shared archive.
old_archive_from_expsyms_cmds=""

# Commands used to build a shared archive.
archive_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib"
archive_expsym_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-retain-symbols-file \$wl\$export_symbols -o \$lib"

# Commands used to build a loadable module if different from building
# a shared archive.
module_cmds=""
module_expsym_cmds=""

# Whether we are building with GNU ld or not.
with_gnu_ld="yes"

# Flag that allows shared libraries with undefined symbols to be built.
allow_undefined_flag=""

# Flag that enforces no undefined symbols.
no_undefined_flag=""

# Flag to hardcode $libdir into a binary during linking.
# This must work even if $libdir does not exist
hardcode_libdir_flag_spec="\${wl}-rpath \${wl}\$libdir"

# If ld is used when linking, flag to hardcode $libdir into a binary
# during linking.  This must work even if $libdir does not exist.
hardcode_libdir_flag_spec_ld=""

# Whether we need a single "-rpath" flag with a separated argument.
hardcode_libdir_separator=""

# Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
# DIR into the resulting binary.
hardcode_direct=no

# Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
# DIR into the resulting binary and the resulting library dependency is
# "absolute",i.e impossible to change by setting ${shlibpath_var} if the
# library is relocated.
hardcode_direct_absolute=no

# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
# into the resulting binary.
hardcode_minus_L=no

# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
# into the resulting binary.
hardcode_shlibpath_var=unsupported

# Set to "yes" if building a shared library automatically hardcodes DIR
# into the library and all subsequent libraries and executables linked
# against it.
hardcode_automatic=no

# Set to yes if linker adds runtime paths of dependent libraries
# to runtime path list.
inherit_rpath=no

# Whether libtool must link a program against all its dependency libraries.
link_all_deplibs=unknown

# Fix the shell variable $srcfile for the compiler.
fix_srcfile_path=""

# Set to "yes" if exported symbols are required.
always_export_symbols=no

# The commands to list exported symbols.
export_symbols_cmds="\$NM \$libobjs \$convenience | \$global_symbol_pipe | \$SED 's/.* //' | sort | uniq > \$export_symbols"

# Symbols that should not be listed in the preloaded symbols.
exclude_expsyms="_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*"

# Symbols that must always be exported.
include_expsyms=""

# Commands necessary for linking programs (against libraries) with templates.
prelink_cmds=""

# Specify filename containing input files.
file_list_spec=""

# How to hardcode a shared library path into an executable.
hardcode_action=immediate

# The directories searched by this compiler when creating a shared library.
compiler_lib_search_dirs=""

# Dependencies to place before and after the objects being linked to
# create a shared library.
predep_objects=""
postdep_objects=""
predeps=""
postdeps=""

# The library search path used internally by the compiler when linking
# a shared library.
compiler_lib_search_path=""

# ### END LIBTOOL TAG CONFIG: GCJ

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-01-06 21:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-06 19:07 Unrecognized option '-Wl,-rpath' for jv-convert Gerald Pfeifer
2011-01-06 19:22 ` Ralf Wildenhues
2011-01-06 21:28   ` Gerald Pfeifer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).