fix for issue #1135 (ConeJoint causes rigid body to disappear)

This commit is contained in:
Stephen Gold 2019-07-04 08:29:30 -07:00
parent 2ab0319202
commit f831301a2a

View File

@ -108,13 +108,13 @@ model {
if (os == "osx") { if (os == "osx") {
cppCompiler.args '-I', "$javaHome/include/darwin" cppCompiler.args '-I', "$javaHome/include/darwin"
cppCompiler.args "-Ofast" cppCompiler.args "-O3"
cppCompiler.args "-U_FORTIFY_SOURCE" cppCompiler.args "-U_FORTIFY_SOURCE"
} else if (os == "linux") { } else if (os == "linux") {
cppCompiler.args "-fvisibility=hidden" cppCompiler.args "-fvisibility=hidden"
cppCompiler.args '-I', "$javaHome/include/linux" cppCompiler.args '-I', "$javaHome/include/linux"
cppCompiler.args "-fPIC" cppCompiler.args "-fPIC"
cppCompiler.args "-Ofast" cppCompiler.args "-O3"
cppCompiler.args "-U_FORTIFY_SOURCE" cppCompiler.args "-U_FORTIFY_SOURCE"
cppCompiler.args "-fpermissive" cppCompiler.args "-fpermissive"
linker.args "-fvisibility=hidden" linker.args "-fvisibility=hidden"
@ -127,7 +127,7 @@ model {
} }
cppCompiler.args "-fpermissive" cppCompiler.args "-fpermissive"
cppCompiler.args "-static" cppCompiler.args "-static"
cppCompiler.args "-Ofast" cppCompiler.args "-O3"
cppCompiler.args "-U_FORTIFY_SOURCE" cppCompiler.args "-U_FORTIFY_SOURCE"
linker.args "-static" linker.args "-static"
linker.args "-Wl,--exclude-all-symbols" linker.args "-Wl,--exclude-all-symbols"