1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 22:52:45 +01:00
RIOT/cpu/native/Makefile.include

18 lines
416 B
Makefile
Raw Normal View History

2020-03-26 10:25:49 +01:00
NATIVEINCLUDES += -I$(RIOTCPU)/native/include -I$(RIOTBASE)/sys/include
# Local include for OSX
ifeq ($(BUILDOSXNATIVE),1)
2020-03-26 10:25:49 +01:00
NATIVEINCLUDES += -I$(RIOTCPU)/native/osx-libc-extra
endif
ifneq (,$(filter periph_can,$(USEMODULE)))
LINKFLAGS += -lsocketcan
endif
TOOLCHAINS_SUPPORTED = gnu llvm afl
# Platform triple as used by Rust
ifeq ($(OS) $(OS_ARCH),Linux x86_64)
RUST_TARGET = i686-unknown-linux-gnu
endif