forked from klee/klee
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add failed test in debug and temp script for build
- Loading branch information
Showing
32 changed files
with
129 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
#!/bin/sh | ||
|
||
# For more build options, visit | ||
# https://klee.github.io/build-script/ | ||
|
||
|
||
# BASE_IMAGE: ubuntu:jammy-20230126 | ||
# REPOSITORY: ghcr.io/klee | ||
# COVERAGE: 0 | ||
# DISABLE_ASSERTIONS: 0 | ||
# ENABLE_DOXYGEN: 0 | ||
# ENABLE_OPTIMIZED: 1 | ||
# ENABLE_DEBUG: 1 | ||
# GTEST_VERSION: 1.11.0 | ||
# KLEE_RUNTIME_BUILD: "Debug+Asserts" | ||
# LLVM_VERSION: 11 | ||
# MINISAT_VERSION: "master" | ||
# REQUIRES_RTTI: 0 | ||
# SOLVERS: BITWUZLA:Z3:STP | ||
# STP_VERSION: 2.3.3 | ||
# TCMALLOC_VERSION: 2.9.1 | ||
# UCLIBC_VERSION: klee_uclibc_v1.3 | ||
# USE_TCMALLOC: 1 | ||
# USE_LIBCXX: 1 | ||
# Z3_VERSION: 4.8.15 | ||
# SQLITE_VERSION: 3400100 | ||
# BITWUZLA_VERSION: main | ||
# BITWUZLA_COMMIT: 80ef7cd803e1c71b5939c3eb951f1736388f7090 | ||
# JSON_VERSION: v3.11.3 | ||
|
||
# Base folder where dependencies and KLEE itself are installed | ||
BASE=$HOME/klee_build | ||
|
||
## KLEE Required options | ||
# Build type for KLEE. The options are: | ||
# Release | ||
# Release+Debug | ||
# Release+Asserts | ||
# Release+Debug+Asserts | ||
# Debug | ||
# Debug+Asserts | ||
# KLEE_RUNTIME_BUILD="Debug+Asserts" | ||
KLEE_RUNTIME_BUILD="Debug+Asserts" | ||
|
||
COVERAGE=0 | ||
ENABLE_DOXYGEN=0 | ||
USE_TCMALLOC=1 | ||
TCMALLOC_VERSION=2.9.1 | ||
USE_LIBCXX=1 | ||
# Also required despite not being mentioned in the guide | ||
SQLITE_VERSION="3400100" | ||
|
||
|
||
## LLVM Required options | ||
LLVM_VERSION=14 | ||
ENABLE_OPTIMIZED=1 | ||
ENABLE_DEBUG=1 | ||
DISABLE_ASSERTIONS=0 | ||
REQUIRES_RTTI=0 | ||
|
||
## Solvers Required options | ||
# SOLVERS=STP | ||
SOLVERS=BITWUZLA:Z3:STP | ||
|
||
## Google Test Required options | ||
GTEST_VERSION=1.11.0 | ||
|
||
## json options | ||
JSON_VERSION=v3.11.3 | ||
|
||
## UClibC Required options | ||
UCLIBC_VERSION=klee_uclibc_v1.3 | ||
# LLVM_VERSION is also required for UClibC | ||
|
||
## Z3 Required options | ||
Z3_VERSION=4.8.15 | ||
|
||
STP_VERSION=2.3.3 | ||
MINISAT_VERSION=master | ||
|
||
BITWUZLA_VERSION=0.3.1 | ||
BITWUZLA_COMMIT=80ef7cd803e1c71b5939c3eb951f1736388f7090 | ||
|
||
BITWUZLA_COMMIT="$BITWUZLA_COMMIT" TCMALLOC_VERSION="$TCMALLOC_VERSION" BASE="$BASE" KLEE_RUNTIME_BUILD=$KLEE_RUNTIME_BUILD COVERAGE=$COVERAGE ENABLE_DOXYGEN=$ENABLE_DOXYGEN USE_TCMALLOC=$USE_TCMALLOC USE_LIBCXX=$USE_LIBCXX LLVM_VERSION=$LLVM_VERSION ENABLE_OPTIMIZED=$ENABLE_OPTIMIZED ENABLE_DEBUG=$ENABLE_DEBUG DISABLE_ASSERTIONS=$DISABLE_ASSERTIONS REQUIRES_RTTI=$REQUIRES_RTTI SOLVERS=$SOLVERS GTEST_VERSION=$GTEST_VERSION UCLIBC_VERSION=$UCLIBC_VERSION STP_VERSION=$STP_VERSION MINISAT_VERSION=$MINISAT_VERSION Z3_VERSION=$Z3_VERSION BITWUZLA_VERSION=$BITWUZLA_VERSION SQLITE_VERSION=$SQLITE_VERSION JSON_VERSION=$JSON_VERSION ./scripts/build/build.sh klee --install-system-deps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.