aboutsummaryrefslogtreecommitdiffhomepage
path: root/gen/Makefile
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2022-11-24 11:40:50 +0900
committerMITSUNARI Shigeo <[email protected]>2022-11-24 15:48:06 +0900
commitbc73a081642f89d6ffc8442a3c8f86ac24ca2729 (patch)
treed2cfdd5c1a132ed07be563b4e15a03442cf2f05f /gen/Makefile
parent6989aea9460557bf0d4aec4681ea73f0a05cfd96 (diff)
downloadxbyak-bc73a081642f89d6ffc8442a3c8f86ac24ca2729.tar.gz
xbyak-bc73a081642f89d6ffc8442a3c8f86ac24ca2729.zip
remove -fno-operator-names option
Diffstat (limited to 'gen/Makefile')
-rw-r--r--gen/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/gen/Makefile b/gen/Makefile
index 97a6846..f254d71 100644
--- a/gen/Makefile
+++ b/gen/Makefile
@@ -1,6 +1,6 @@
TARGET=../xbyak/xbyak_mnemonic.h
BIN=sortline gen_code gen_avx512
-CFLAGS=-I../ -O2 -DXBYAK_NO_OP_NAMES -Wall -Wextra -Wno-missing-field-initializers $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS)
+CFLAGS=-I../ -O2 -Wall -Wextra -Wno-missing-field-initializers $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS)
all: $(TARGET) ../CMakeLists.txt ../meson.build ../readme.md ../readme.txt
sortline: sortline.cpp
$(CXX) $(CFLAGS) $< -o $@