diff options
author | 2018-05-13 11:53:42 +0200 | |
---|---|---|
committer | 2018-05-13 12:00:49 +0200 | |
commit | 0e468eb30aa368319fa93d6266653477353efae1 (patch) | |
tree | ff8aafbff8ea9e0bcb6c2bbf67989ddcdcd6709c /ci/script.sh | |
parent | 7a0ba8063a181e1b8df9673fdd9e83d10c451678 (diff) | |
download | cortex-m-0e468eb30aa368319fa93d6266653477353efae1.tar.gz cortex-m-0e468eb30aa368319fa93d6266653477353efae1.tar.zst cortex-m-0e468eb30aa368319fa93d6266653477353efae1.zip |
add a "const-fn" feature
Diffstat (limited to 'ci/script.sh')
-rw-r--r-- | ci/script.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/script.sh b/ci/script.sh index e017b54..9fd46a3 100644 --- a/ci/script.sh +++ b/ci/script.sh @@ -4,7 +4,7 @@ main() { cargo check --target $TARGET if [ $TRAVIS_RUST_VERSION = nightly ]; then - cargo check --target $TARGET --features inline-asm + cargo check --target $TARGET --features 'const-fn inline-asm' fi case $TARGET in @@ -12,7 +12,7 @@ main() { cargo check --target $TARGET --features cm7-r0p1 if [ $TRAVIS_RUST_VERSION = nightly ]; then - cargo check --target $TARGET --features 'cm7-r0p1 inline-asm' + cargo check --target $TARGET --features 'cm7-r0p1 const-fn inline-asm' fi ;; |