Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ rustflags = [
# Set up the CRT: use ucrtbase.dll but statically link the VC runtime.
"-C", "link-args=/nodefaultlib onecore_apiset.lib ucrt.lib libvcruntime.lib libcmt.lib",
# Enable CFG
"-Ccontrol-flow-guard"
"-Ccontrol-flow-guard",
]

[target.aarch64-apple-darwin]
Expand Down Expand Up @@ -89,6 +89,9 @@ rustflags = [
"-Ctarget-feature=+crt-static",
# Use RELR relocation format, which is considerably smaller.
"-Clink-arg=-Wl,-z,pack-relative-relocs",
# Disable unwind tables to reduce binary size.
# TODO: It would be nice to have this enabled for debug builds
"-Cforce-unwind-tables=no",
]

[target.'cfg(all(target_arch = "aarch64", target_env = "musl"))']
Expand Down
108 changes: 54 additions & 54 deletions .github/workflows/openvmm-ci.yaml

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions .github/workflows/openvmm-docs-ci.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions .github/workflows/openvmm-docs-pr.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading