Skip to content

Commit 19493b7

Browse files
committed
Remove -MMD complier flag so no null.d file is created
See microsoft/vscode-arduino#1206 and https://developer.arm.com/documentation/101754/0616/armclang-Reference/armclang-Command-line-Options/-MD---MMD no idea why we would want this flag anyway.
1 parent 353c56a commit 19493b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Compiler flags
22
AARCH64_TOOLCHAIN_DIR = build/aarch64-unknown-linux-gnu
33
ARMGNU = $(AARCH64_TOOLCHAIN_DIR)/bin/aarch64-unknown-linux-gnu
4-
CFLAGS = -Wall -Wextra -ffreestanding -mgeneral-regs-only -MMD -mcpu=$(CPU)
4+
CFLAGS = -Wall -Wextra -ffreestanding -mgeneral-regs-only -mcpu=$(CPU)
55
ASMFLAGS = -MMD
66
LDFLAGS = -nostdlib -nostartfiles
77

0 commit comments

Comments
 (0)