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 7c3f82d commit e85a991Copy full SHA for e85a991
.travis/musllvm.sh
@@ -9,6 +9,9 @@ export WLLVM_OUTPUT=WARNING
9
10
wllvm-sanity-checker
11
12
+#setup the store so we test that feature as well
13
+export WLLVM_BC_STORE=/tmp/bc
14
+mkdir /tmp/bc
15
16
git clone https://github.com/SRI-CSL/musllvm.git musllvm
17
cd musllvm
@@ -18,11 +21,24 @@ extract-bc --bitcode ./lib/libc.a
18
21
19
22
if [ -s "./lib/libc.a.bc" ]
20
23
then
- echo "libc.a.bc."
24
+ echo "libc.a.bc exists."
25
else
26
exit 1
27
fi
28
29
+#now lets makes sure the store has the bitcode too.
30
+mv ./lib/libc.a .
31
+make clean
32
+extract-bc --bitcode ./libc.a
33
+
34
+if [ -s "./libc.a.bc" ]
35
+then
36
37
+else
38
+ exit 1
39
+fi
40
41
42
43
44
0 commit comments