Skip to content

Commit 3b49603

Browse files
committed
Updated IE build script for CentOS 7
1 parent 694baff commit 3b49603

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

config/ie/buildAll

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,22 +52,22 @@ def installDocs() :
5252

5353
raise RuntimeError("Error : scons installDoc " + str( " ".join( buildArgs ) ) )
5454

55-
if IEEnv.platform() == "cent6.x86_64" :
55+
if IEEnv.platform() in ( "cent6.x86_64", "cent7.x86_64" ) :
5656

5757
for compilerVersion in IEEnv.activeVersions(IEEnv.registry["compilers"]["gcc"]):
5858
for pythonVersion in IEEnv.activeVersions( IEEnv.registry["apps"]["python"] ) :
5959
build( [ "COMPILER_VERSION="+compilerVersion, "DL_VERSION=UNDEFINED", "PYTHON_VERSION="+pythonVersion, "ARNOLD_VERSION=4.0.9.1" ] )
6060

6161
for dlVersion in IEEnv.activeVersions( IEEnv.registry["apps"]["3delight"] ):
62-
for pythonVersion in IEEnv.activeVersions( IEEnv.registry["apps"]["python"] ) :
63-
build( [ "COMPILER_VERSION=4.1.2", "DL_VERSION="+dlVersion, "PYTHON_VERSION="+pythonVersion, "ARNOLD_VERSION=UNDEFINED" ] )
62+
for compilerVersion in IEEnv.activeVersions(IEEnv.registry["compilers"]["gcc"]):
63+
for pythonVersion in IEEnv.activeVersions( IEEnv.registry["apps"]["python"] ) :
64+
build( [ "COMPILER_VERSION="+compilerVersion, "DL_VERSION="+dlVersion, "PYTHON_VERSION="+pythonVersion, "ARNOLD_VERSION=UNDEFINED" ] )
6465

6566
for mayaVersion in IEEnv.activeAppVersions( "maya" ) :
66-
build( [ "APP=maya", "APP_VERSION="+mayaVersion, "DL_VERSION=10.0.142", "ARNOLD_VERSION=4.0.9.1" ] )
67+
build( [ "APP=maya", "APP_VERSION="+mayaVersion ] )
6768

6869
for nukeVersion in IEEnv.activeAppVersions( "nuke" ) :
69-
if nukeVersion.startswith( "8" ) :
70-
build( [ "APP=nuke", "APP_VERSION="+nukeVersion ] )
70+
build( [ "APP=nuke", "APP_VERSION="+nukeVersion ] )
7171

7272
for houdiniVersion in IEEnv.activeAppVersions( "houdini" ) :
7373
if houdiniVersion.startswith( "14" ) or ( houdiniVersion.startswith( "13" ) and houdiniVersion.endswith( "-python2.7" ) ) :

0 commit comments

Comments
 (0)