We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b677818 commit a239557Copy full SHA for a239557
Makefile
@@ -3,7 +3,11 @@ BOARD ?= STM32F469DISC
3
FLAVOR ?= SPECTER
4
USER_C_MODULES ?= ../../../usermods
5
MPY_DIR ?= f469-disco/micropython
6
-MPY_CFLAGS ?= -Wno-dangling-pointer -Wno-enum-int-mismatch
+ifeq ($(shell uname),Linux)
7
+ MPY_CFLAGS ?= -Wno-dangling-pointer -Wno-enum-int-mismatch
8
+else
9
+ MPY_CFLAGS ?=
10
+endif
11
FROZEN_MANIFEST_DISCO ?= ../../../../manifests/disco.py
12
FROZEN_MANIFEST_DEBUG ?= ../../../../manifests/debug.py
13
FROZEN_MANIFEST_UNIX ?= ../../../../manifests/unix.py
0 commit comments