Skip to content

Commit

Permalink
Fix CI: on Makfile about CUSTOM_RUSTFLAGS
Browse files Browse the repository at this point in the history
  • Loading branch information
joii2020 committed Nov 1, 2024
1 parent ab116fa commit 8e8a9d9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion atomics-contract/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TOP := $(cur_dir)
# RUSTFLAGS that are likely to be tweaked by developers. For example,
# while we enable debug logs by default here, some might want to strip them
# for minimal code size / consumed cycles.
CUSTOM_RUSTFLAGS := --cfg debug_assertions
CUSTOM_RUSTFLAGS := -C debug_assertions
# RUSTFLAGS that are less likely to be tweaked by developers. Most likely
# one would want to keep the default values here.
FULL_RUSTFLAGS := -C target-feature=+zba,+zbb,+zbc,+zbs,-a $(CUSTOM_RUSTFLAGS)
Expand Down
2 changes: 1 addition & 1 deletion contract/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TOP := $(cur_dir)
# RUSTFLAGS that are likely to be tweaked by developers. For example,
# while we enable debug logs by default here, some might want to strip them
# for minimal code size / consumed cycles.
CUSTOM_RUSTFLAGS := --cfg debug_assertions
CUSTOM_RUSTFLAGS := -C debug_assertions
# RUSTFLAGS that are less likely to be tweaked by developers. Most likely
# one would want to keep the default values here.
FULL_RUSTFLAGS := -C target-feature=+zba,+zbb,+zbc,+zbs,-a $(CUSTOM_RUSTFLAGS)
Expand Down
2 changes: 1 addition & 1 deletion stack-reorder-contract/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TOP := $(cur_dir)
# RUSTFLAGS that are likely to be tweaked by developers. For example,
# while we enable debug logs by default here, some might want to strip them
# for minimal code size / consumed cycles.
CUSTOM_RUSTFLAGS := --cfg debug_assertions
CUSTOM_RUSTFLAGS := -C debug_assertions
# RUSTFLAGS that are less likely to be tweaked by developers. Most likely
# one would want to keep the default values here.
FULL_RUSTFLAGS := -C target-feature=+zba,+zbb,+zbc,+zbs,-a $(CUSTOM_RUSTFLAGS) \
Expand Down
2 changes: 1 addition & 1 deletion standalone-contract/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TOP := $(cur_dir)
# RUSTFLAGS that are likely to be tweaked by developers. For example,
# while we enable debug logs by default here, some might want to strip them
# for minimal code size / consumed cycles.
CUSTOM_RUSTFLAGS := --cfg debug_assertions
CUSTOM_RUSTFLAGS := -C debug_assertions
# RUSTFLAGS that are less likely to be tweaked by developers. Most likely
# one would want to keep the default values here.
FULL_RUSTFLAGS := -C target-feature=+zba,+zbb,+zbc,+zbs,-a $(CUSTOM_RUSTFLAGS)
Expand Down
2 changes: 1 addition & 1 deletion workspace/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TOP := $(cur_dir)
# RUSTFLAGS that are likely to be tweaked by developers. For example,
# while we enable debug logs by default here, some might want to strip them
# for minimal code size / consumed cycles.
CUSTOM_RUSTFLAGS := --cfg debug_assertions
CUSTOM_RUSTFLAGS := -C debug_assertions
# Additional cargo args to append here. For example, one can use
# make test CARGO_ARGS="-- --nocapture" so as to inspect data emitted to
# stdout in unit tests
Expand Down

0 comments on commit 8e8a9d9

Please sign in to comment.