-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
polkatool jam-service [compiledcode]
Currently gives: ERROR: Failed to create program from ELF: the program contains no code (linking empty programs is not supported!)
- Loading branch information
1 parent
4aa1c44
commit bbf4c11
Showing
6 changed files
with
106 additions
and
22 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
cargo-features = ["edition2024"] | ||
|
||
[package] | ||
name = "jam-service-fib" | ||
version = "0.1.0" | ||
edition = "2024" | ||
publish = false | ||
|
||
[lib] | ||
name = "fib" | ||
path = "src/main.rs" | ||
crate-type = ["cdylib"] | ||
|
||
[[bin]] | ||
name = "jam-service-fib" | ||
path = "src/main.rs" | ||
|
||
[dependencies] | ||
polkavm-derive = { path = "../../crates/polkavm-derive" } | ||
simplealloc = { path = "../../crates/simplealloc" } | ||
##alloc = "0.5.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
[toolchain] | ||
channel = "1.75.0" | ||
channel = "rve-nightly" | ||
components = ["rustc", "cargo", "rust-std"] | ||
targets = ["riscv32imc-unknown-none-elf"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters