diff options
author | Martin Nowack <m.nowack@imperial.ac.uk> | 2023-02-23 22:12:08 +0000 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2023-03-17 22:38:16 +0000 |
commit | 2add9acfc9f2b0b01ea7c45c81494b7c19f696c2 (patch) | |
tree | b55f99acf519171569a22b9c08906e06659a7008 | |
parent | 45a958f9ee3200dbfc2a2fb07f4f82968bf83b02 (diff) | |
download | klee-2add9acfc9f2b0b01ea7c45c81494b7c19f696c2.tar.gz |
Use newer LLVM_DIR config option to build FreeBSD
-rw-r--r-- | .cirrus.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index cda56fe1..828f6673 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -10,7 +10,7 @@ task: build_script: - mkdir build - cd build - - cmake -DLLVM_CONFIG_BINARY=/usr/local/bin/llvm-config11 -DMAKE_BINARY=/usr/local/bin/gmake -DENABLE_TCMALLOC:BOOL=true -DENABLE_POSIX_RUNTIME:BOOL=ON -DENABLE_SOLVER_Z3:BOOL=true -DENABLE_SYSTEM_TESTS:BOOL=ON .. + - cmake -DLLVM_DIR=/usr/local/llvm11 -DMAKE_BINARY=/usr/local/bin/gmake -DENABLE_TCMALLOC:BOOL=true -DENABLE_POSIX_RUNTIME:BOOL=ON -DENABLE_SOLVER_Z3:BOOL=true -DENABLE_SYSTEM_TESTS:BOOL=ON .. - gmake test_script: - sed -i.bak -e 's/lit\./lit11\./' test/lit.cfg |