diff options
author | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-01-15 22:39:53 +0100 |
---|---|---|
committer | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-01-15 22:39:53 +0100 |
commit | 5e478cf66fdcfe30b1e0f1235a66029278a338f9 (patch) | |
tree | b00ffb233fd3af6bea8fec7e76cf311ae22df0dc | |
parent | 4ce5e51690756326965dc76bb733dd100d843557 (diff) |
don't use libsupc++ in non-static builds
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 2980f33b..f6e4aa3d 100644 --- a/configure.ac +++ b/configure.ac @@ -142,7 +142,7 @@ case "$host" in AS_IF([test "${enable_staticlink}" != "no"], [ NOCPPLIB="-nostdlib ../../$LIB/lib/libsupc++.a" ], [ - NOCPPLIB="-nostdlib -lsupc++" + NOCPPLIB="" ]) AC_SUBST(NOCPPLIB) ;; |