diff options
author | David Robillard <d@drobilla.net> | 2011-09-17 06:27:29 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-09-17 06:27:29 +0000 |
commit | 719467ea9806e946bced52242e7c4f0ffd7accd9 (patch) | |
tree | c6f66357c2d9ff9f46c1b966954cb595b942f423 | |
parent | 79370806983ddd820fac0a2542f195881e8bea4b (diff) | |
download | autowaf-719467ea9806e946bced52242e7c4f0ffd7accd9.tar.gz autowaf-719467ea9806e946bced52242e7c4f0ffd7accd9.tar.bz2 autowaf-719467ea9806e946bced52242e7c4f0ffd7accd9.zip |
Don't always add -fPIC and -DPIC to CFLAGS
git-svn-id: http://svn.drobilla.net/autowaf@52 e2e4594f-ea7b-45dc-bc5a-5f5301e603aa
-rw-r--r-- | autowaf.py | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -208,10 +208,6 @@ def configure(conf): conf.env.append_value('CXXFLAGS', [ '-ansi', '-Woverloaded-virtual', '-Wnon-virtual-dtor']) append_cxx_flags('-Wall -Wextra -Wno-unused-parameter') - append_cxx_flags('-DPIC') - if sys.platform != 'win32': - append_cxx_flags('-fPIC') - append_cxx_flags('-fshow-column') conf.env.prepend_value('CFLAGS', '-I' + os.path.abspath('.')) |