Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.29
0.1.30
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "skribe"
version = "0.1.29"
version = "0.1.30"
description = "Property testing for Stylus smart contracts"
readme = "README.md"
requires-python = "~=3.10"
Expand Down
17 changes: 2 additions & 15 deletions skribe-fuzz-rs/build.rs
Original file line number Diff line number Diff line change
@@ -1,21 +1,8 @@
use std::env;
use std::process::Command;

fn main() {
let out_dir = env::var("OUT_DIR").unwrap();
let kdist_path = format!("{}/kdist", out_dir);

let _output = Command::new("kdist")
.env("KDIST_DIR", &kdist_path)
.arg("-v")
.arg("build")
.arg("stylus-semantics.llvm-library")
.output()
.expect("Failed to build the kllvm library with kdist");

let llvm_library_path = format!("{}/stylus-semantics/llvm-library", kdist_path);

let llvm_library_path = env::var("KLLVM_LIBRARY_PATH")
.expect("KLLVM_LIBRARY_PATH must be set to the directory containing interpreter.so");
println!("cargo:rustc-link-search={}", llvm_library_path);

println!("cargo:rustc-link-lib=dylib:+verbatim=interpreter.so");
}
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading