forked from klee/klee
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
87 additions
and
47 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
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,6 @@ | ||
#ifndef KLEE_RUN_KLEE_H | ||
#define KLEE_RUN_KLEE_H | ||
|
||
int run_klee(int argc, char **argv, char **envp); | ||
|
||
#endif // KLEE_RUN_KLEE_H |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
add_library(kleeRunner | ||
run_klee.cpp | ||
) | ||
|
||
set(KLEE_LIBS | ||
kleeCore | ||
) | ||
|
||
set(RUN_KLEE_INCLUDE_DEST "include/run_klee") | ||
|
||
target_link_libraries(kleeRunner ${KLEE_LIBS}) | ||
target_include_directories(kleeRunner PUBLIC ${KLEE_INCLUDE_DIRS} ${LLVM_INCLUDE_DIRS}) | ||
target_compile_options(kleeRunner PUBLIC ${KLEE_COMPONENT_CXX_FLAGS}) | ||
target_compile_definitions(kleeRunner PUBLIC ${KLEE_COMPONENT_CXX_DEFINES}) | ||
set(run_klee_header_path ${PROJECT_SOURCE_DIR}/include/klee/Runner) | ||
set(run_klee_headers ${run_klee_header_path}/run_klee.h) | ||
|
||
set_target_properties(kleeRunner PROPERTIES PUBLIC_HEADER "${run_klee_headers}") | ||
|
||
install(TARGETS kleeRunner | ||
EXPORT run_klee DESTINATION "${RUN_KLEE_LIB_DEST}" | ||
PUBLIC_HEADER DESTINATION "${RUN_KLEE_INCLUDE_DEST}" | ||
) | ||
|
||
|
||
# The KLEE depends on the runtimes | ||
add_dependencies(kleeRunner BuildKLEERuntimes) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include <klee/Runner/run_klee.h> | ||
|
||
int main(int argc, char **argv, char **envp) { | ||
return run_klee(argc, argv, envp); | ||
} |
This file was deleted.
Oops, something went wrong.