changeset 14526:4823ccaf5023

removed unnecessary LFLAGS adjustment for clang
author Doug Simon <doug.simon@oracle.com>
date Thu, 13 Mar 2014 21:15:13 +0100
parents 7c36ec150036
children 756029dab703
files make/bsd/makefiles/gcc.make
diffstat 1 files changed, 0 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/make/bsd/makefiles/gcc.make	Thu Mar 13 15:48:36 2014 +0100
+++ b/make/bsd/makefiles/gcc.make	Thu Mar 13 21:15:13 2014 +0100
@@ -377,19 +377,9 @@
 #------------------------------------------------------------------------
 # Linker flags
 
-# Ensure use libstdc++ on clang, not libc++
-ifeq ($(USE_CLANG), true)
-  LFLAGS += -stdlib=libstdc++
-endif
-
 # statically link libstdc++.so, work with gcc but ignored by g++
 STATIC_STDCXX = -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic
 
-# Ensure use libstdc++ on clang, not libc++
-ifeq ($(USE_CLANG), true)
-  LFLAGS += -stdlib=libstdc++
-endif
-
 ifeq ($(USE_CLANG),)
   # statically link libgcc and/or libgcc_s, libgcc does not exist before gcc-3.x.
   ifneq ("${CC_VER_MAJOR}", "2")