From 8412e719ef50a938f3c58efe5f6fe9ce9a247ee2 Mon Sep 17 00:00:00 2001 From: "xander.z" <162873981+xander42280@users.noreply.github.com> Date: Mon, 16 Dec 2024 12:11:38 +0800 Subject: [PATCH] Set build tag public (#194) --- build/src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build/src/lib.rs b/build/src/lib.rs index f142daaa..dda41ce2 100644 --- a/build/src/lib.rs +++ b/build/src/lib.rs @@ -6,10 +6,10 @@ pub use build::execute_build_program; use clap::Parser; -const BUILD_TARGET: &str = "mips-unknown-linux-musl"; -// const DEFAULT_TAG: &str = "v1.0.0"; -const DEFAULT_OUTPUT_DIR: &str = "elf"; -const HELPER_TARGET_SUBDIR: &str = "elf-compilation"; +pub const BUILD_TARGET: &str = "mips-unknown-linux-musl"; +//pub const DEFAULT_TAG: &str = "v1.0.0"; +pub const DEFAULT_OUTPUT_DIR: &str = "elf"; +pub const HELPER_TARGET_SUBDIR: &str = "elf-compilation"; /// Compile an ZKM program. ///