Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2006-02-24 00:08:40 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2006-02-24 00:08:40 +0300
commit2f8f1b8cdfa40d4af7fef506e1a0eab3c7462277 (patch)
tree3cd83ba2ca79565c9dfad9cc8be7e40956e29a6b /tools
parentecdfa5374aa929dd2c78f306ae1ffa9dee1040e9 (diff)
==SCons==
+ When giving CC and CXX on the command-line you can specify what compiler to use: scons CC=gcc-3.3 CXX=g++-3.3
Diffstat (limited to 'tools')
-rwxr-xr-xtools/btools.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/btools.py b/tools/btools.py
index afa21f2d28f..ba14712c201 100755
--- a/tools/btools.py
+++ b/tools/btools.py
@@ -37,14 +37,14 @@ def validate_arguments(args, bc):
'WITH_BF_FTGL', 'BF_FTGL', 'BF_FTGL_INC', 'BF_FTGL_LIB',
'WITH_BF_FFMPEG',
'WITH_BF_PLAYER',
- 'CFLAGS', 'CCFLAGS', 'CPPFLAGS',
+ 'CFLAGS', 'CCFLAGS', 'CPPFLAGS',
'REL_CFLAGS', 'REL_CCFLAGS',
'C_WARN', 'CC_WARN', 'LLIBS', 'PLATFORM_LINKFLAGS',
'BF_PROFILE_FLAGS' ]
arg_list = ['BF_DEBUG', 'BF_QUIET', 'BF_CROSS', 'BF_UPDATE',
'BF_INSTALLDIR', 'BF_TOOLSET', 'BF_BINNAME',
'BF_BUILDDIR', 'BF_FANCY', 'BF_QUICK', 'BF_PROFILE', 'BF_DEBUG',
- 'BF_PRIORITYLIST', 'BF_BUILDINFO'
+ 'BF_PRIORITYLIST', 'BF_BUILDINFO','CC', 'CXX'
]
all_list = opts_list + arg_list