You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN sudo su john -c "git clone https://github.com/embree/embree.git"
42
+
WORKDIR /home/john/embree
43
+
RUN sudo su john -c "git checkout $VER_EMBREE"
44
+
RUN sudo su john -c "cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -DEMBREE_ISPC_EXECUTABLE=$BIN_ISPC -DCMAKE_INSTALL_PREFIX=/usr/local"
45
+
RUN sudo su john -c "make $MAKE_FLAGS && make DESTDIR=~/install install"
46
+
RUN make install
47
+
30
48
# RCMAKE
31
49
ENV VER_RCMAKE=0.4
32
50
RUN sudo su john -c "git clone https://gitlab.com/vaplv/rcmake.git"
33
51
WORKDIR /home/john/rcmake
34
-
35
52
RUN sudo su john -c "git checkout tags/$VER_RCMAKE"
36
53
WORKDIR /home/john/rcmake/cmake
37
54
RUN sudo su john -c "cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE . && make $MAKE_FLAGS"
@@ -50,28 +67,6 @@ RUN sudo su john -c "cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE . && make $MAKE_FLAGS"
50
67
RUN sudo su john -c "make DESTDIR=~/install install"
51
68
RUN make install
52
69
53
-
# ISPC
54
-
WORKDIR /home/john/
55
-
RUN sudo su john -c "wget https://github.com/ispc/ispc/releases/download/v1.12.0/ispc-v1.12.0b-linux.tar.gz"
56
-
RUN sudo su john -c "tar zxvf ispc-v1.12*-linux.tar.gz"
RUN sudo su john -c "git clone https://github.com/embree/embree.git"
68
-
WORKDIR /home/john/embree
69
-
RUN sudo su john -c "git checkout $VER_EMBREE"
70
-
RUN sudo su john -c "cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -DEMBREE_ISPC_EXECUTABLE=$BIN_ISPC -DCMAKE_INSTALL_PREFIX=/usr/local"
71
-
RUN sudo su john -c "make $MAKE_FLAGS"
72
-
RUN sudo su john -c "make DESTDIR=~/install install"
73
-
RUN make install
74
-
75
70
# STAR-3D
76
71
WORKDIR /home/john
77
72
ENV VER_STAR3D=tags/0.8.1
@@ -89,7 +84,6 @@ ENV VER_RANDOM123=1.14.0
89
84
WORKDIR /home/john
90
85
RUN sudo su john -c "git clone https://github.com/DEShawResearch/random123.git"
91
86
WORKDIR /home/john/random123
92
-
RUN sudo su john -c "git tag"
93
87
RUN sudo su john -c "git checkout tags/v$VER_RANDOM123"
0 commit comments