mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
29 lines
684 B
Makefile
29 lines
684 B
Makefile
.PHONY: all clean
|
|
|
|
CFLAGS := -mavx
|
|
CFLAGS += -mavx2
|
|
CFLAGS += -mno-bmi
|
|
CFLAGS += -mno-red-zone
|
|
CFLAGS += -fno-asynchronous-unwind-tables
|
|
CFLAGS += -fno-stack-protector
|
|
CFLAGS += -fno-exceptions
|
|
CFLAGS += -fno-builtin
|
|
CFLAGS += -fno-rtti
|
|
CFLAGS += -nostdlib
|
|
CFLAGS += -O3
|
|
|
|
NATIVE_ASM := $(wildcard native/*.S)
|
|
NATIVE_SRC := $(wildcard native/*.h)
|
|
NATIVE_SRC += $(wildcard native/*.c)
|
|
|
|
all: native_amd64.s
|
|
|
|
clean:
|
|
rm -vf native_amd64.s output/*.s
|
|
|
|
native_amd64.s: ${NATIVE_SRC} ${NATIVE_ASM} native_amd64.go
|
|
mkdir -p output
|
|
clang ${CFLAGS} -S -o output/native.s native/native.c
|
|
python3 tools/asm2asm/asm2asm.py native_amd64.s output/native.s ${NATIVE_ASM}
|
|
asmfmt -w native_amd64.s
|