Merge pull request #50737 from Calinou/linuxbsd-reenable-pie

Re-enable building position-independent executables on Linux/*BSD
This commit is contained in:
Rémi Verschelde 2021-09-15 08:41:24 +02:00 committed by GitHub
commit 52d7f4bfe0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -201,11 +201,6 @@ def configure(env):
env.Append(CCFLAGS=["-pipe"])
env.Append(LINKFLAGS=["-pipe"])
# -fpie and -no-pie is supported on GCC 6+ and Clang 4+, both below our
# minimal requirements.
env.Append(CCFLAGS=["-fpie"])
env.Append(LINKFLAGS=["-no-pie"])
## Dependencies
env.ParseConfig("pkg-config x11 --cflags --libs")