forked from project-oak/oak
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This makes the build non-deterministic: project-oak#862 (comment) It was introduced in an attempt to make `oak_abi` `no_std` compatible, but that's not necessary any more. Ref project-oak#862
- Loading branch information
Showing
13 changed files
with
301 additions
and
124 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
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
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
""" | ||
cargo-raze crate build file. | ||
|
||
DO NOT EDIT! Replaced on runs of cargo-raze | ||
""" | ||
package(default_visibility = [ | ||
# Public for visibility by "@raze__crate__version//" targets. | ||
# | ||
# Prefer access through "//cargo", which limits external | ||
# visibility to explicit Cargo.toml dependencies. | ||
"//visibility:public", | ||
]) | ||
|
||
licenses([ | ||
"notice", # "MIT,Apache-2.0" | ||
]) | ||
|
||
load( | ||
"@io_bazel_rules_rust//rust:rust.bzl", | ||
"rust_library", | ||
"rust_binary", | ||
"rust_test", | ||
) | ||
|
||
|
||
|
||
rust_library( | ||
name = "hermit_abi", | ||
crate_root = "src/lib.rs", | ||
crate_type = "lib", | ||
edition = "2015", | ||
srcs = glob(["**/*.rs"]), | ||
deps = [ | ||
"@raze__libc__0_2_69//:libc", | ||
], | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
version = "0.1.11", | ||
crate_features = [ | ||
"default", | ||
], | ||
) | ||
|
Oops, something went wrong.