We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4349306 commit b2ab496Copy full SHA for b2ab496
SConstruct
@@ -3290,7 +3290,6 @@ appleseedEnvAppends = {
3290
],
3291
"CPPFLAGS" : [
3292
"-DAPPLESEED_ENABLE_IMATH_INTEROP",
3293
- "-DAPPLESEED_USE_SSE",
3294
3295
"LIBPATH" : [
3296
"$APPLESEED_LIB_PATH",
@@ -3299,6 +3298,9 @@ appleseedEnvAppends = {
3299
3298
3300
}
3301
+if platform.machine() != "arm64" :
3302
+ appleseedEnvAppends["CPPFLAGS"].append( "-DAPPLESEED_USE_SSE" )
3303
+
3304
appleseedEnv.Append( **appleseedEnvAppends )
3305
3306
appleseedPythonModuleEnv = pythonModuleEnv.Clone( **appleseedEnvSets )
0 commit comments