1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00

Merge pull request #9091 from kaspar030/qdsa_fix

pkg/qDSA: disble arm asm version for cortexm > 0plus
This commit is contained in:
Gaëtan Harter 2018-05-07 15:13:15 +02:00 committed by GitHub
commit 4948cd01dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
ifneq (,$(filter atmega_common cortexm_common,$(USEMODULE)))
ifneq (,$(filter cortex-m0%,$(CPU_ARCH)))
USEMODULE += qDSA_asm
endif
ifneq (,$(filter atmega_common,$(USEMODULE)))
USEMODULE += qDSA_asm
endif

View File

@ -1,4 +1,4 @@
ifneq (,$(filter cortexm_common,$(USEMODULE)))
ifneq (,$(filter cortex-m0%,$(CPU_ARCH)))
QDSA_IMPL ?= arm
else
ifneq (,$(filter atmega_common,$(USEMODULE)))