more scons fixes
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@584 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
b69a707ceb
commit
558f453dde
14
SConstruct
14
SConstruct
|
@ -112,7 +112,7 @@ env = Environment(
|
||||||
CXX = 'g++',
|
CXX = 'g++',
|
||||||
CCFLAGS = ' '.join(compileFlags),
|
CCFLAGS = ' '.join(compileFlags),
|
||||||
CXXFLAGS = ' '.join(compileFlags + [ '-fvisibility-inlines-hidden' ]),
|
CXXFLAGS = ' '.join(compileFlags + [ '-fvisibility-inlines-hidden' ]),
|
||||||
CPPDEFINES = cppDefines,
|
CPPDEFINES = cppDefines,
|
||||||
CPPPATH = include_paths,
|
CPPPATH = include_paths,
|
||||||
LIBPATH = lib_paths,
|
LIBPATH = lib_paths,
|
||||||
variables = vars,
|
variables = vars,
|
||||||
|
@ -121,11 +121,11 @@ env = Environment(
|
||||||
'HOME' : os.environ['HOME']
|
'HOME' : os.environ['HOME']
|
||||||
},
|
},
|
||||||
BUILDERS = builders,
|
BUILDERS = builders,
|
||||||
DESCRIPTION = description,
|
DESCRIPTION = description,
|
||||||
SUMMARY = description,
|
SUMMARY = description,
|
||||||
LICENSE = license,
|
LICENSE = license,
|
||||||
NAME = name,
|
NAME = name,
|
||||||
VERSION = version,
|
VERSION = version,
|
||||||
)
|
)
|
||||||
|
|
||||||
# verbose compile
|
# verbose compile
|
||||||
|
@ -134,7 +134,7 @@ verbose = ARGUMENTS.get('verbose', False)
|
||||||
if not bool(verbose):
|
if not bool(verbose):
|
||||||
env['CCCOMSTR'] = "Compiling $TARGET"
|
env['CCCOMSTR'] = "Compiling $TARGET"
|
||||||
env['CXXCOMSTR'] = "Compiling $TARGET"
|
env['CXXCOMSTR'] = "Compiling $TARGET"
|
||||||
env['ARCOMSTR'] = " ar $TARGER"
|
env['ARCOMSTR'] = " ar $TARGET"
|
||||||
env['LINKCOMSTR'] = "Linking $TARGET"
|
env['LINKCOMSTR'] = "Linking $TARGET"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue