[libc++] Do not force building with -fPIC
authorLouis Dionne <ldionne@apple.com>
Fri, 8 Mar 2019 22:24:12 +0000 (22:24 +0000)
committerLouis Dionne <ldionne@apple.com>
Fri, 8 Mar 2019 22:24:12 +0000 (22:24 +0000)
Summary:
Whether we build with -fPIC should be specified by the
CMAKE_POSITION_INDEPENDENT_CODE option at configure time.
Note that this patch doesn't change the behavior when building
by default, since -fPIC is used for shared libraries by default.

Reviewers: EricWF

Subscribers: mgorny, christof, jkorous, dexonsmith, libcxx-commits

Differential Revision: https://reviews.llvm.org/D59146

llvm-svn: 355746

libcxx/lib/CMakeLists.txt

index 22a9bf3..1b10bc6 100644 (file)
@@ -105,10 +105,6 @@ if (LIBCXXABI_USE_LLVM_UNWINDER)
 endif()
 
 # Setup flags.
-if (NOT WIN32)
-  add_flags_if_supported(-fPIC)
-endif()
-
 add_link_flags_if_supported(-nodefaultlibs)
 
 if (LIBCXX_TARGETING_MSVC)