mirror of
https://github.com/pierre-emmanuelJ/iptv-proxy.git
synced 2026-03-17 23:42:57 +01:00
Bumps [github.com/gin-gonic/gin](https://github.com/gin-gonic/gin) from 1.7.7 to 1.9.0. - [Release notes](https://github.com/gin-gonic/gin/releases) - [Changelog](https://github.com/gin-gonic/gin/blob/master/CHANGELOG.md) - [Commits](https://github.com/gin-gonic/gin/compare/v1.7.7...v1.9.0) --- updated-dependencies: - dependency-name: github.com/gin-gonic/gin dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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
|