Author: sebor
Date: Fri Sep 30 14:46:28 2005
New Revision: 292861

URL: http://svn.apache.org/viewcvs?rev=292861&view=rev
Log:
2005-09-30  Martin Sebor  <[EMAIL PROTECTED]>

        STDCXX-44
        * mipspro.config (LDFLAGS): Used the undocumented -LANG:std=off option
        (presumably the correct spelling of -LANG:non-std) to prevent linking
        with the native implementation of the C++ Standard Library.

Modified:
    incubator/stdcxx/trunk/etc/config/mipspro.config

Modified: incubator/stdcxx/trunk/etc/config/mipspro.config
URL: 
http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/etc/config/mipspro.config?rev=292861&r1=292860&r2=292861&view=diff
==============================================================================
--- incubator/stdcxx/trunk/etc/config/mipspro.config (original)
+++ incubator/stdcxx/trunk/etc/config/mipspro.config Fri Sep 30 14:46:28 2005
@@ -20,8 +20,13 @@
 CXXFLAGS        =
 PRELINKFLAGS    = -ar -WR,-v -o $(LIBNAME)
 CPPFLAGS        = -I$(TOPDIR)/include/ansi
+
 # disable warnings about libs that aren't being used to resolve any symbols
 LDFLAGS         = -Wl,-woff,84 -L$(LIBDIR)
+
+# use the undocumented -LANG:std=off option to prevent linking
+# with the native C++ Standard Library
+LDFLAGS        += -LANG:std=off
 
 # the extension of assembly files is .s
 AS_EXT = .s


Reply via email to