From 43b49f0290e3ca6b753f45c51e0e40dca5265be0 Mon Sep 17 00:00:00 2001 From: Joe Richey Date: Thu, 15 Oct 2020 03:31:46 -0700 Subject: [PATCH] Set the "asm" feature flag by default Signed-off-by: Joe Richey --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9262bb6d..b039e7e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ cc = { optional = true, version = "1.0" } panic-handler = { path = 'crates/panic-handler' } [features] -default = ["compiler-builtins"] +default = ["compiler-builtins", "asm"] # Some algorithms benefit from inline assembly, but some compiler backends do # not support it, so inline assembly is only enabled when this flag is set.