This is the mail archive of the java-prs@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libgcj/28312] peer libraries are installed into gcjversionedlibdir, not into nativeexeclib



------- Comment #6 from fitzsim at redhat dot com  2006-08-15 15:01 -------
What are you trying to do, exactly?  This is the intended behaviour, that
libgcj's configure overrides classpath's configure by injecting
--with-native-libdir.  Here is the configure fragment:

# Determine where the standard .db file and GNU Classpath JNI
# libraries are found.
multi_os_directory=`$CC -print-multi-os-directory`
case $multi_os_directory in
  .)
   dbexecdir='$(libdir)/gcj-$(gcc_version)' # Avoid /.
   ac_configure_args="$ac_configure_args
--with-native-libdir=\$\(libdir\)/gcj-`cat $srcdir/../gcc/BASE-VER`"
   ;;
  *)
   dbexecdir='$(libdir)/'$multi_os_directory'/gcj-$(gcc_version)'
   ac_configure_args="$ac_configure_args
--with-native-libdir=\$\(libdir\)/$multi_os_directory/gcj-`cat
$srcdir/../gcc/BASE-VER`"
   ;;
esac
AC_SUBST(dbexecdir)


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28312


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]