From 1b78d79bf544991a061e7e090d4d45231f929f0a Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 23 Jun 2017 06:58:05 -0700 Subject: [PATCH] Require the `compiler-builtins` target for the example --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 69b9c03..08bf5fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ utest-macros = { git = "https://github.com/japaric/utest" } [[example]] name = "intrinsics" -required-features = ["c"] +required-features = ["c", "compiler-builtins"] [workspace]