We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05888fd commit 4b60df4Copy full SHA for 4b60df4
1 file changed
simtbx/SConscript
@@ -34,6 +34,7 @@ if not env_etc.no_boost_python:
34
env_simtbx.SConscript("gpu/SConscript",exports={ 'env' : env_simtbx })
35
env_simtbx.SConscript("pixel/SConscript",exports={ 'env' : env_simtbx })
36
37
- # only build kokkos on linux and if kokkos is enabled
38
- if sys.platform.startswith('linux') and env_etc.enable_kokkos:
+ # only build kokkos on linux/macOS and if kokkos is enabled
+ if (sys.platform.startswith('linux') or sys.platform == 'darwin') \
39
+ and env_etc.enable_kokkos:
40
env_simtbx.SConscript("kokkos/SConscript",exports={ 'env' : env_simtbx })
0 commit comments