From octave-maintainers-request at bevo dot che dot wisc dot edu Fri Jun 29 15:33:13 2001 Subject: Re: [patch] Use C linkage for dynamic linking From: Mumit Khan To: "John W. Eaton" cc: octave-maintainers at bevo dot che dot wisc dot edu, Mumit Khan Date: Fri, 29 Jun 2001 15:33:09 -0500 (CDT) On Fri, 29 Jun 2001, John W. Eaton wrote: > I don't see this as necessary, but when I install a new version of > Octave, I typically rebuild all .oct files that I am using with it. > Not everyone may not do that, however, so I'd like to know what other > people think. Sounds good to me. Btw, could you apply the following on top of the last patch? The 'sun' in the ABI name becomes '1' on a Sun, so let's use sun_v5 instead (v5 comes from Sun C++ version 5 ABI, notably different than 4, which used ARM). Ah, how the whole preprocessing side-effects never ceases to annoy me. 2001-04-29 Mumit Khan * aclocal.m4 (OCTAVE_CXX_ABI): Use "sun_v5" instead of "sun". --- aclocal.m4.~1 Fri Jun 29 15:23:53 2001 +++ aclocal.m4 Fri Jun 29 15:24:25 2001 at @ -1016,7 +1016,7 @@ EOF octave_cv_cxx_abi='gnu_v3' fi if test "`${NM-nm} conftest.o | grep __1cMFSmy_dld_fcn6F_b_`" != ""; then - octave_cv_cxx_abi='sun' + octave_cv_cxx_abi='sun_v5' fi else echo "configure: failed program was:" >&AC_FD_CC Regards, Mumit