Skip to content

Commit

Permalink
fix: remove explicit compiler_builtins
Browse files Browse the repository at this point in the history
  • Loading branch information
byeongkeunahn committed Mar 1, 2025
1 parent 356f63e commit b90e164
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 30 deletions.
15 changes: 0 additions & 15 deletions basm-std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,6 @@ path = "src/lib.rs"
libm = "0.2.8"
ryu = "1.0"

[target.x86_64-pc-windows-msvc.dependencies]
compiler_builtins = { version = "0.1.149", features = ["mem"] }
[target.x86_64-pc-windows-gnu.dependencies]
compiler_builtins = { version = "0.1.149", features = ["mem"] }
[target.x86_64-unknown-linux-gnu.dependencies]
compiler_builtins = { version = "0.1.149", features = ["mem"] }
[target.i686-unknown-linux-gnu.dependencies]
compiler_builtins = { version = "0.1.149", features = ["mem"] }
[target.aarch64-unknown-linux-gnu.dependencies]
compiler_builtins = { version = "0.1.149", features = ["mem"] }
[target.aarch64-apple-darwin.dependencies]
compiler_builtins = { version = "0.1.149", features = ["mem"] }
[target.wasm32-unknown-unknown.dependencies]
compiler_builtins = { version = "0.1.149", features = ["mem"] }

[features]
# Enables codegen routines.
# When this feature is enabled, the external implementations should provide an `extern "C" fn _basm_main()`.
Expand Down
15 changes: 0 additions & 15 deletions basm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,6 @@ ryu = "1.0"
basm-macro = { path = "../basm-macro" }
basm-std = { path = "../basm-std", features = ["codegen"] }

[target.x86_64-pc-windows-msvc.dependencies]
compiler_builtins = { version = "0.1.149", features = ["mem"] }
[target.x86_64-pc-windows-gnu.dependencies]
compiler_builtins = { version = "0.1.149", features = ["mem"] }
[target.x86_64-unknown-linux-gnu.dependencies]
compiler_builtins = { version = "0.1.149", features = ["mem"] }
[target.i686-unknown-linux-gnu.dependencies]
compiler_builtins = { version = "0.1.149", features = ["mem"] }
[target.aarch64-unknown-linux-gnu.dependencies]
compiler_builtins = { version = "0.1.149", features = ["mem"] }
[target.aarch64-apple-darwin.dependencies]
compiler_builtins = { version = "0.1.149", features = ["mem"] }
[target.wasm32-unknown-unknown.dependencies]
compiler_builtins = { version = "0.1.149", features = ["mem"] }

[features]
short = ["basm-std/short"]
fastio = ["basm-std/fastio"]
Expand Down

0 comments on commit b90e164

Please sign in to comment.