2020-03-26 10:25:49 +01:00
|
|
|
NATIVEINCLUDES += -I$(RIOTCPU)/native/include -I$(RIOTBASE)/sys/include
|
2018-04-12 17:48:07 +02:00
|
|
|
|
2015-11-15 12:14:59 +01:00
|
|
|
# Local include for OSX
|
2015-03-13 07:26:31 +01:00
|
|
|
ifeq ($(BUILDOSXNATIVE),1)
|
2020-03-26 10:25:49 +01:00
|
|
|
NATIVEINCLUDES += -I$(RIOTCPU)/native/osx-libc-extra
|
2015-03-13 07:26:31 +01:00
|
|
|
endif
|
|
|
|
|
2020-11-09 09:04:55 +01:00
|
|
|
ifneq (,$(filter periph_can,$(USEMODULE)))
|
2020-10-01 10:42:55 +02:00
|
|
|
LINKFLAGS += -lsocketcan
|
|
|
|
endif
|
|
|
|
|
2019-07-01 13:02:53 +02:00
|
|
|
TOOLCHAINS_SUPPORTED = gnu llvm afl
|
2021-04-02 18:42:34 +02:00
|
|
|
|
|
|
|
# Platform triple as used by Rust
|
|
|
|
ifeq ($(OS) $(OS_ARCH),Linux x86_64)
|
|
|
|
RUST_TARGET = i686-unknown-linux-gnu
|
|
|
|
endif
|