From 1711ff67ae23074cc82bb52744ae53ef80301837 Mon Sep 17 00:00:00 2001 From: Jonathan Shimwell Date: Wed, 17 Nov 2021 17:49:24 +0000 Subject: [PATCH] changed embree compile to increase compatibility --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index e6e6983b34..c1f014ed4b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -91,6 +91,8 @@ RUN if [ "$build_dagmc" = "on" ]; then \ && mkdir build && cd build \ && cmake ../embree \ -DCMAKE_INSTALL_PREFIX=${EMBREE_INSTALL_DIR} \ + -DEMBREE_MAX_ISA=NONE \ + -DEMBREE_ISA_SSE42=ON \ -DEMBREE_ISPC_SUPPORT=OFF \ && make 2>/dev/null -j${compile_cores} install \ && rm -rf ${EMBREE_INSTALL_DIR}/build ${EMBREE_INSTALL_DIR}/embree ; \