mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
hopefully fix the build, and actually use the options
git-svn-id: svn://localhost/ardour2/branches/3.0@5372 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
7884727e78
commit
b89a786b3e
2 changed files with 5 additions and 7 deletions
8
wscript
8
wscript
|
|
@ -116,9 +116,6 @@ def set_compiler_flags (conf,opt):
|
|||
conf.define ('build_target', 'powerpc')
|
||||
else:
|
||||
conf.define ('build_target', 'i686')
|
||||
print "\n*******************************"
|
||||
print "detected DIST_TARGET = " + conf.env['build_target']
|
||||
print "*******************************\n"
|
||||
else:
|
||||
conf.define ('build_target', opt.dist_target)
|
||||
|
||||
|
|
@ -359,8 +356,6 @@ def configure(conf):
|
|||
# Fix utterly braindead FLAC include path to not smash assert.h
|
||||
conf.env['CPPPATH_FLAC'] = []
|
||||
|
||||
set_compiler_flags (conf, Options.options)
|
||||
|
||||
# Tell everyone that this is a waf build
|
||||
|
||||
conf.env.append_value('CCFLAGS', '-DWAF_BUILD')
|
||||
|
|
@ -404,6 +399,9 @@ def configure(conf):
|
|||
autowaf.display_msg(conf, 'Windows Key', opts.windows_key)
|
||||
if opts.windows_key:
|
||||
conf.define('WINDOWS_KEY', opts.windows_key)
|
||||
|
||||
set_compiler_flags (conf, Options.options)
|
||||
|
||||
autowaf.display_msg(conf, 'C Compiler flags', conf.env['CCFLAGS'])
|
||||
autowaf.display_msg(conf, 'C++ Compiler flags', conf.env['CXXFLAGS'])
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue