mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
dfbd4f946e
The hwtimer_wait test was tortured with the following script which ran several hours. ---- make clean all-debug while : do date ./bin/native/hwtimer_wait.elf > log & pid=$! sleep 20 success=$(cat log|grep success) if [ "$success" != "success" ] then date echo "BUG" exit fi kill $pid done ---- Closes #715.
9 lines
254 B
Makefile
9 lines
254 B
Makefile
export NATIVEINCLUDES += -I$(RIOTCPU)/native/include -I$(RIOTBASE)/sys/include
|
|
|
|
# Local include for malloc.h on OSX
|
|
ifeq ($(BUILDOSXNATIVE),1)
|
|
export NATIVEINCLUDES += -I$(RIOTBASE)/sys/malloc/include
|
|
endif
|
|
|
|
export USEMODULE += periph hwtimer_compat
|