738: comment on how to link on macOS apple silicon machine r=korken89 a=mike-kfed

probably messes with building on other OS, so I made it a comment, but I figure this can be useful for macOS users to have it link successfully.

Co-authored-by: Michael Kefeder <m.kefeder@gmail.com>
This commit is contained in:
bors[bot] 2023-04-20 18:59:35 +00:00 committed by GitHub
commit ba134050fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,3 +36,8 @@ opt-level = "s" # optimize for size
codegen-units = 1 # better optimizations codegen-units = 1 # better optimizations
debug = true # symbols are nice and they don't increase the size on Flash debug = true # symbols are nice and they don't increase the size on Flash
lto = true # better optimzations lto = true # better optimzations
[features]
# avoid having to use --allow-multiple-definition linker flag
# on macOS with Apple Silicon at least
#default = ["rp-pico/disable-intrinsics"]