File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -2,12 +2,11 @@ language: python
2
2
python :
3
3
- " 3.3"
4
4
- " 2.7"
5
- - " 2.6"
6
5
7
6
# command to install dependencies
8
7
install :
9
8
- sudo apt-get update
10
- - sudo apt-get install llvm-3.4
9
+ - sudo apt-get install llvm-3.4 clang-3.4 libapr1-dev libaprutil1-dev
11
10
- export WLLVM_HOME=`pwd`
12
11
13
12
# command to run tests
Original file line number Diff line number Diff line change 2
2
# Make sure we exit if there is a failure
3
3
set -e
4
4
5
+
6
+ export PATH=/usr/lib/llvm-3.4/bin:${WLLVM_HOME} :${PATH}
7
+ export LLVM_COMPILER=' clang'
8
+ export WLLVM_OUTPUT=WARNING
9
+
10
+ wget http://apache.mirrors.pair.com//httpd/httpd-2.4.12.tar.gz
11
+ tar xfz httpd-2.4.12.tar.gz
12
+ cd httpd-2.4.12
13
+ CC=wwlvm ./configure
14
+ make
15
+ extract-bc httpd
16
+
17
+
18
+ if [ -s " httpd.bc" ]
19
+ then
20
+ echo " httpd.bc built."
21
+ else
22
+ exit 1
23
+ fi
24
+
25
+
26
+
27
+
28
+
29
+
You can’t perform that action at this time.
0 commit comments