diff options
author | dzwdz | 2021-08-24 17:14:31 +0200 |
---|---|---|
committer | dzwdz | 2021-08-24 17:14:31 +0200 |
commit | 04878a07e587f26fe6d5a1044b69651406e3aa1c (patch) | |
tree | a1ddb6d1b1739f314c2ed3d960fcf1f677d472f4 | |
parent | 3b8b07ee2eb21e043a56cdc548e2be34857adb00 (diff) |
remove redundant compiler flag
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ PATH := $(shell pwd)/toolchain/bin/:$(PATH) AS = i686-elf-as CC = i686-elf-gcc -CFLAGS = -std=gnu99 -ffreestanding -O2 -Wall -Wextra -Wold-style-declaration -Wold-style-definition +CFLAGS = -std=gnu99 -ffreestanding -O2 -Wall -Wextra -Wold-style-definition CFLAGS += -mgeneral-regs-only CFLAGS += -Isrc/ LFLAGS = -ffreestanding -O2 -nostdlib -lgcc |