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 27b6469 commit 816bf03Copy full SHA for 816bf03
modules/bullet_physics/SCsub
@@ -2,12 +2,15 @@
2
3
Import("env")
4
Import("env_modules")
5
+import methods
6
7
env_bullet = env_modules.Clone()
8
9
thirdparty_obj = []
10
11
env.Append(builtin_bullet=True)
12
+if methods.using_clang(env_bullet) or methods.using_emcc(env_bullet):
13
+ env_bullet.Append(CXXFLAGS=["-frelaxed-template-template-args"])
14
15
# Add bullet header, no need to compile Bullet third party, because it's
16
# already done by the godot bullet module.
0 commit comments