1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Pass different flags on different platforms when building PIC.

llvm-svn: 65229
This commit is contained in:
Nick Lewycky 2009-02-21 08:41:09 +00:00
parent 74d0dda00f
commit 4d6ea70a06

View File

@ -278,8 +278,19 @@ ifdef ENABLE_EXPENSIVE_CHECKS
endif
ifeq ($(ENABLE_PIC),1)
CXX.Flags += -fPIC
C.Flags += -fPIC
ifeq ($(LLVM_ON_WIN32),1)
# Nothing. Win32 defaults to PIC and warns when given -fPIC
else
ifeq ($(OS),Darwin)
# common is forbidden in dylib files
CXX.Flags += -fno-common
C.Flags += -fno-common
else
# Linux and others; pass -fPIC
CXX.Flags += -fPIC
C.Flags += -fPIC
endif
endif
endif
CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual