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 5165184 commit fb8c5c8Copy full SHA for fb8c5c8
subprojects/packagefiles/joltphysics/meson.build
@@ -12,7 +12,10 @@ cpp = meson.get_compiler('cpp')
12
13
message('system: ' + host_machine.system())
14
15
-if cpp.get_id().contains('clang') and host_machine.system() == 'cygwin'
+# meson reports msys2 as windows, so we have to check for clang + windows
16
+# to catch clang on msys2. This doesn't catch clang-cl on windows so thats
17
+# fine.
18
+if cpp.get_id() == 'clang' and host_machine.system() == 'windows'
19
error(
20
'unsupported architecture: Clang on cygwin/msys2 cannot build jolt due to linking issues, sorry',
21
)
0 commit comments