svf-lib 1.0.2234 → 1.0.2235

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.
Files changed (2) hide show
  1. package/llvm_install.sh +1 -2
  2. package/package.json +1 -1
package/llvm_install.sh CHANGED
@@ -5,7 +5,6 @@ MajorLLVMVer=16
5
5
  LLVMVer=${MajorLLVMVer}.0.0
6
6
  UbuntuLLVM_RTTI="https://github.com/SVF-tools/SVF/releases/download/SVF-3.0/llvm-${LLVMVer}-ubuntu24-rtti-amd64.tar.gz"
7
7
  UbuntuZ3="https://github.com/Z3Prover/z3/releases/download/z3-4.8.8/z3-4.8.8-x64-ubuntu-16.04.zip"
8
- UbuntuLLVM_RTTI="https://github.com/SVF-tools/SVF/releases/download/SVF-3.0/llvm-${MajorLLVMVer}.0.0-ubuntu24-rtti-amd64.tar.gz"
9
8
  Z3Home="z3.obj"
10
9
  LLVMHome="llvm-${LLVMVer}.obj"
11
10
 
@@ -53,7 +52,7 @@ then
53
52
  if [ ! -d "$install_path/$LLVMHome" ]
54
53
  then
55
54
  echo 'Downloading LLVM binary for Ubuntu'
56
- wget -c $UbuntuLLVM -O llvm-ubuntu.tar.xz
55
+ wget -c $UbuntuLLVM_RTTI -O llvm-ubuntu.tar.xz
57
56
  mkdir $install_path/$LLVMHome
58
57
  echo 'Unzipping LLVM binary for Ubuntu'
59
58
  tar -xf "llvm-ubuntu.tar.xz" -C $install_path/$LLVMHome --strip-components 1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svf-lib",
3
- "version": "1.0.2234",
3
+ "version": "1.0.2235",
4
4
  "description": "SVF's npm support",
5
5
  "main": "index.js",
6
6
  "scripts": {