-
Notifications
You must be signed in to change notification settings - Fork 116
Rust entrypoint #184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Rust entrypoint #184
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
5dd23ed
added-rust-entry
majabbour 35a8777
fixed program path
majabbour a3a2b8c
removed test dockerfile
majabbour 9cd393c
changed c archive name + used patched Solana + update solana
majabbour 92172f4
removed uneeded env variables
majabbour a808cfa
updated build script to new c name
majabbour caf2159
Add comment
b5d7ac4
Reorder for better caching
7dd8e7b
Better comment
31afb5d
Better hack
2c9b9b9
removed uneeded sudo commands
majabbour 35ffda7
added comments to build scripts
majabbour 7c05d21
more robust way to find C and Rust directories
majabbour 5d56270
added comments
majabbour e04ca6d
made entry-point safe
majabbour 0a1751b
updated liscence
majabbour b176383
restructured repo
majabbour 3bbb4ba
bumped version number
majabbour File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
OUT_DIR := ./target | ||
SOLANA := ../../../solana | ||
include $(SOLANA)/sdk/bpf/c/bpf.mk | ||
cpyth: | ||
bash -c "ar rcs target/libcpyth.a target/**/*.o" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
cargo-features = ["edition2021"] | ||
|
||
[package] | ||
name = "pyth-oracle" | ||
version = "2.13.1" | ||
edition = "2021" | ||
license = "Apache 2.0" | ||
publish = false | ||
|
||
[dependencies] | ||
solana-program = "=1.10.29" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "lib"] |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
fn main() { | ||
println!("cargo:rustc-link-search=../c/target"); | ||
} |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#[link(name = "cpyth")] | ||
extern "C" { | ||
fn c_entrypoint(input: *mut u8) -> u64; | ||
} | ||
|
||
#[no_mangle] | ||
pub extern "C" fn entrypoint(input: *mut u8) -> u64 { | ||
unsafe{ | ||
return c_entrypoint(input); | ||
} | ||
} |
This file contains hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.