You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ rustup default 1.61
$ cargo build ✔
Compiling libsecp256k1 v0.5.0
...
Compiling poc-framework v0.1.6 (/home/sylvain/software/solana-poc-framework)
error: expected None-delimited group
--> src/lib.rs:741:21
|
741 |solana_bpf_loader_upgradeable_program!(),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro `solana_bpf_loader_upgradeable_program` (in Nightly builds, run with -Z macro-backtrace for more info)
error: expected None-delimited group
--> src/lib.rs:742:21
|
742 |solana_bpf_loader_program!(),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro `solana_bpf_loader_program` (in Nightly builds, run with -Z macro-backtrace for more info)
error: expected None-delimited group
--> src/lib.rs:743:21
|
743 |solana_bpf_loader_deprecated_program!(),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro `solana_bpf_loader_deprecated_program` (in Nightly builds, run with -Z macro-backtrace for more info)
error: could not compile `poc-framework` due to 3 previous errors
It seems to be related to rust-lang/rust#92472. It is solved by switching to rust 1.60:
$ rustup default 1.60
The text was updated successfully, but these errors were encountered:
To reproduce:
It seems to be related to rust-lang/rust#92472. It is solved by switching to rust 1.60:
The text was updated successfully, but these errors were encountered: