You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			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
 |