This is the mail archive of the newlib@sourceware.org mailing list for the newlib 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] |
(1) That's a fairly major change
(2) Even if libtool supports building shared libraries on platform X, newlib's support for shared is deliberately limited to just i*86-linux. Unless you want to change /that/ too, you'll need to implement some mechanism of completely *disabling* --enable-shared for all but i*86-linux, while still defaulting to --enable-shared --enable-static on linux.
case "$target" in i*86-*-linux*) ;; *) enable_shared=no ;; esac
(3) What does Jeff J. think about this?
(1) make the Makefile.am changes I detailed (all 75 or only 15) (2) modify the 15 configure.in's with (a) _LT_DECL_SED outside the existing 'if' -- /if/ that works
(b) or unconditionally call LT_INIT like I did, but also add AC_NO_EXECUTABLES (3) re-aclocal, re-automake, re-autoconf yadda yadda
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |