mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
a2e1b92e1d
For RISC-V and Cortex-M-not-3, triples are known and have worked in some configuration, but do not work at the moment and stay disabled until the reference platforms (native, M3) have been established well.
18 lines
416 B
Makefile
18 lines
416 B
Makefile
NATIVEINCLUDES += -I$(RIOTCPU)/native/include -I$(RIOTBASE)/sys/include
|
|
|
|
# Local include for OSX
|
|
ifeq ($(BUILDOSXNATIVE),1)
|
|
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
|