summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2014-09-08 09:57:24 +0200
committerTobias Klauser <tklauser@distanz.ch>2014-09-08 09:59:37 +0200
commitee339c1af78312527312a812dce579266a9ba5bc (patch)
tree2be975074e8c8049b6c1d82519614de966842907 /.travis.yml
parent0c564e103d8240a997ee43965fa749bf816ea486 (diff)
build: travis: Re-enable clang and also use it for configure
Make sure we also use clang for the compile tests in the configure script. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index da26cef..04aea5b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,9 +1,10 @@
language: c
compiler:
- gcc
+ - clang
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libnl-3-dev libnl-genl-3-dev libnetfilter-conntrack-dev libgeoip-dev liburcu-dev libpcap-dev libnet1-dev libcli-dev
-script: ./configure && make CC=$CC
+script: CC=$CC ./configure && make CC=$CC