mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-10 09:01:34 +11:00
Reduce codegen units to 1 to ensure build works
This commit is contained in:
parent
33620aaf09
commit
e07a080aad
|
@ -15,6 +15,7 @@ debug = true
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
lto = "fat"
|
lto = "fat"
|
||||||
debug = true
|
debug = true
|
||||||
|
codegen-units = 1
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["testing"]
|
default = ["testing"]
|
||||||
|
|
|
@ -20,3 +20,4 @@ debug = true
|
||||||
panic = "abort"
|
panic = "abort"
|
||||||
lto = true
|
lto = true
|
||||||
debug = true
|
debug = true
|
||||||
|
codegen-units = 1
|
||||||
|
|
|
@ -8,14 +8,13 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
agb = { version = "0.13.0", path = "../../agb" }
|
agb = { version = "0.13.0", path = "../../agb" }
|
||||||
bare-metal = "1"
|
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
opt-level = 2
|
opt-level = 2
|
||||||
debug = true
|
debug = true
|
||||||
|
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
panic = "abort"
|
panic = "abort"
|
||||||
lto = true
|
lto = true
|
||||||
debug = true
|
debug = true
|
||||||
|
codegen-units = 1
|
||||||
|
|
|
@ -17,3 +17,4 @@ debug = true
|
||||||
panic = "abort"
|
panic = "abort"
|
||||||
lto = true
|
lto = true
|
||||||
debug = true
|
debug = true
|
||||||
|
codegen-units = 1
|
||||||
|
|
Loading…
Reference in a new issue