mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-05 22:34:56 +01:00
Fix StaffPad compilation/linking with gcc-15.2
This commit is contained in:
parent
f19e7c9ac9
commit
35b5d156c3
1 changed files with 2 additions and 1 deletions
|
|
@ -27,7 +27,8 @@ def configure(conf):
|
|||
pass
|
||||
|
||||
def build(bld):
|
||||
obj = bld.stlib(features = 'cxx cxxstlib', source = staffpad_sources)
|
||||
obj = bld.stlib(features = 'c cxx cxxstlib', source = staffpad_sources)
|
||||
obj.cflags = [ bld.env['compiler_flags_dict']['pic'], '-O3', '-ffast-math' ]
|
||||
obj.cxxflags = [ bld.env['compiler_flags_dict']['pic'], '-O3', '-ffast-math' ]
|
||||
obj.export_includes = ['.']
|
||||
obj.includes = ['.', 'pffft']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue