Skip to content

Commit a66eb59

Browse files
authored
Merge pull request travitch#85 from SRI-CSL/master
This is 1.2.7 in the pipishpere
2 parents 90a2f87 + 0ba2815 commit a66eb59

File tree

5 files changed

+11
-22
lines changed

5 files changed

+11
-22
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ script:
3333
# - python -m unittest discover test/ || exit 1
3434
- export WLLVM_HOME=`pwd`
3535
- ${WLLVM_HOME}/.travis/store.sh
36-
- export APACHE_VER=2.4.18
36+
- export APACHE_URL=https://www-us.apache.org/dist/httpd/
37+
- export APACHE_VER=2.4.39
3738
# build apache with clang
3839
- ${WLLVM_HOME}/.travis/apache_clang.sh
3940
# build apache with gcc and dragonegg

.travis/apache_clang.sh

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export WLLVM_OUTPUT=WARNING
99

1010
wllvm-sanity-checker
1111

12-
wget https://archive.apache.org/dist/httpd/httpd-${APACHE_VER}.tar.gz
12+
wget ${APACHE_URL}httpd-${APACHE_VER}.tar.gz
1313

1414
tar xfz httpd-${APACHE_VER}.tar.gz
1515
mv httpd-${APACHE_VER} apache_clang
@@ -26,9 +26,3 @@ then
2626
else
2727
exit 1
2828
fi
29-
30-
31-
32-
33-
34-

.travis/apache_dragonegg.sh

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ export WLLVM_OUTPUT=WARNING
1313

1414
wllvm-sanity-checker
1515

16-
wget https://archive.apache.org/dist/httpd/httpd-${APACHE_VER}.tar.gz
17-
16+
wget ${APACHE_URL}httpd-${APACHE_VER}.tar.gz
1817

1918
tar xfz httpd-${APACHE_VER}.tar.gz
2019
mv httpd-${APACHE_VER} apache_dragonegg
@@ -30,9 +29,3 @@ then
3029
else
3130
exit 1
3231
fi
33-
34-
35-
36-
37-
38-

wllvm/arglistfilter.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ def __init__(self, inputList, exactMatches={}, patternMatches={}):
8888
'-msoft-float' : (0, ArgumentListFilter.compileUnaryCallback),
8989
'-m3dnow' : (0, ArgumentListFilter.compileUnaryCallback),
9090
'-mno-3dnow' : (0, ArgumentListFilter.compileUnaryCallback),
91-
'-m16': (0, ArgumentListFilter.compileUnaryCallback),
92-
'-m32': (0, ArgumentListFilter.compileUnaryCallback),
93-
'-mx32': (0, ArgumentListFilter.compileUnaryCallback),
94-
'-m64': (0, ArgumentListFilter.compileUnaryCallback),
91+
'-m16': (0, ArgumentListFilter.compileLinkUnaryCallback),
92+
'-m32': (0, ArgumentListFilter.compileLinkUnaryCallback),
93+
'-mx32': (0, ArgumentListFilter.compileLinkUnaryCallback),
94+
'-m64': (0, ArgumentListFilter.compileLinkUnaryCallback),
9595
'-miamcu': (0, ArgumentListFilter.compileUnaryCallback),
9696
'-mstackrealign': (0, ArgumentListFilter.compileUnaryCallback),
9797
'-mretpoline-external-thunk': (0, ArgumentListFilter.compileUnaryCallback), #iam: linux kernel stuff

wllvm/version.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@
7474
7575
1.2.5 - 4/17/2019 Fixing the pip package, hopefully.
7676
77+
1.2.6 - 6/18/2019 Various compiler cmd line options parsing tweaks."
7778
"""
7879

79-
wllvm_version = '1.2.5'
80-
wllvm_date = 'April 17 2019'
80+
wllvm_version = '1.2.6'
81+
wllvm_date = 'June 18 2019'

0 commit comments

Comments
 (0)