File tree Expand file tree Collapse file tree 1 file changed +30
-2
lines changed Expand file tree Collapse file tree 1 file changed +30
-2
lines changed Original file line number Diff line number Diff line change 10
10
- export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
11
11
- make TARGET=VORTEX USE_OPENMP=1 CC=clang
12
12
13
+ task :
14
+ name : AppleM1/LLVM/ILP64
15
+ compile_script :
16
+ - brew install llvm
17
+ - export PATH=/opt/homebrew/opt/llvm/bin:$PATH
18
+ - export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
19
+ - export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
20
+ - make TARGET=VORTEX USE_OPENMP=1 CC=clang INTERFACE64=1
21
+
13
22
task :
14
23
name : AppleM1/LLVM/CMAKE
15
24
compile_script :
74
83
image : node:latest
75
84
compile_script :
76
85
- make
77
-
86
+
87
+ task :
88
+ name : NeoverseN1-ILP64
89
+ arm_container :
90
+ image : node:latest
91
+ compile_script :
92
+ - make INTERFACE64=1
93
+
78
94
task :
79
95
name : NeoverseN1-OMP
80
96
arm_container :
@@ -84,14 +100,26 @@ task:
84
100
- make USE_OPENMP=1
85
101
86
102
FreeBSD_task :
103
+ name : FreeBSD-gcc12
87
104
freebsd_instance :
88
105
image_family : freebsd-13-2
89
106
install_script :
90
107
- pkg update -f && pkg upgrade -y && pkg install -y gmake gcc
91
108
compile_script :
92
109
- ls -l /usr/local/lib
93
110
- gmake CC=gcc
94
-
111
+
112
+
113
+ FreeBSD_task :
114
+ name : freebsd-gcc12-ilp64
115
+ freebsd_instance :
116
+ image_family : freebsd-13-2
117
+ install_script :
118
+ - pkg update -f && pkg upgrade -y && pkg install -y gmake gcc
119
+ compile_script :
120
+ - ls -l /usr/local/lib
121
+ - gmake CC=gcc INTERFACE64=1
122
+
95
123
# task:
96
124
# name: Windows/LLVM16 --- too slow ---
97
125
# windows_container:
You can’t perform that action at this time.
0 commit comments