13
0

remove use of hardcoded -fPIC compiler flag, and use compiler flag dict instead

This commit is contained in:
Paul Davis 2018-10-14 22:06:13 -04:00
parent 8ed33f1bc7
commit 931fcdcfb6

View File

@ -599,7 +599,7 @@ def build(bld):
obj.includes = [ '../libs/fst', '.' ] obj.includes = [ '../libs/fst', '.' ]
obj.name = 'libgtk2_ardour' obj.name = 'libgtk2_ardour'
obj.target = 'gtk2_ardour' obj.target = 'gtk2_ardour'
obj.cflags = [ '-fPIC' ] obj.cflags = [ bld.env['compiler_flags_dict']['pic'] ]
else: else:
# just the normal executable version of the GTK GUI # just the normal executable version of the GTK GUI