svf-lib 1.0.1774 → 1.0.1776
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/SVF-linux/Release-build/include/Util/config.h +16 -3
- package/SVF-linux/Release-build/svf/libSvfCore.a +0 -0
- package/SVF-linux/Release-build/svf-llvm/libSvfLLVM.a +0 -0
- package/SVF-linux/svf/include/Util/ExtAPI.h +0 -2
- package/SVF-osx/Release-build/svf/libSvfCore.a +0 -0
- package/SVF-osx/Release-build/svf-llvm/libSvfLLVM.a +0 -0
- package/SVF-osx/svf/include/WPA/AndersenPWC.h +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
#ifndef CONFIG_H_IN
|
|
2
2
|
#define CONFIG_H_IN
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
#define
|
|
6
|
-
#define
|
|
4
|
+
// Directory structure of SVF build
|
|
5
|
+
#define SVF_ROOT "/home/runner/work/SVF/SVF"
|
|
6
|
+
#define SVF_BUILD_DIR "/home/runner/work/SVF/SVF/Release-build"
|
|
7
|
+
#define SVF_INSTALL_DIR "/usr/local"
|
|
8
|
+
#define SVF_BIN_DIR SVF_INSTALL_DIR "/bin"
|
|
9
|
+
#define SVF_LIB_DIR SVF_INSTALL_DIR "/lib"
|
|
10
|
+
#define SVF_INCLUDE_DIR SVF_INSTALL_DIR "/include"
|
|
11
|
+
#define SVF_EXTAPI_DIR SVF_INCLUDE_DIR "/SVF-LLVM"
|
|
12
|
+
#define SVF_EXTAPI_BC SVF_EXTAPI_DIR "/extapi.bc"
|
|
13
|
+
|
|
14
|
+
// Build properties of current SVF build
|
|
15
|
+
#define SVF_BUILD_TYPE "Release"
|
|
16
|
+
/* #undef SVF_ASSERT_MODE */
|
|
17
|
+
/* #undef SVF_COVERAGE */
|
|
18
|
+
/* #undef SVF_SANITIZE */
|
|
19
|
+
|
|
7
20
|
|
|
8
21
|
#endif
|
|
Binary file
|
|
Binary file
|
|
@@ -38,8 +38,6 @@
|
|
|
38
38
|
|
|
39
39
|
/// For a more detailed explanation of how External APIs are handled in SVF, please refer to the SVF Wiki: https://github.com/SVF-tools/SVF/wiki/Handling-External-APIs-with-extapi.c
|
|
40
40
|
|
|
41
|
-
#define DEFAULT_EXTAPI_BC_PATH "/svf-llvm/extapi.bc" // Default path to extapi.bc through the SVF build method(e.g. source ./build.sh)
|
|
42
|
-
|
|
43
41
|
namespace SVF
|
|
44
42
|
{
|
|
45
43
|
|
|
Binary file
|
|
Binary file
|