Typenum build failure

MobileCoin's .cargo/config has this setting:

rustflags = ["-D", "warnings", "-C", "target-cpu=skylake"]

Removing the reference to skylake fixed my problem:

rustflags = ["-D", "warnings"]
1 Like