Skip to content

Commit

Permalink
misc: rename query.cpp to parse.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Toni500github committed Jun 26, 2024
1 parent e45bc8d commit 70db66f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ ifeq ($(DEBUG), 1)
CXXFLAGS := -ggdb3 -Wall -DDEBUG=1 $(DEBUG_CXXFLAGS) $(CXXFLAGS)
else
BUILDDIR = build/release
CXXFLAGS := -O2 $(CXXFLAGS)
endif

ifeq ($(PARSER_TEST), 1)
Expand All @@ -38,7 +37,7 @@ SRC = $(sort $(wildcard src/*.cpp src/query/*.cpp))
OBJ = $(SRC:.cpp=.o)
LDFLAGS += -lmagic -lpci -L./$(BUILDDIR)/fmt -lfmt
CXXFLAGS ?= -mtune=generic -march=native
CXXFLAGS += -Wno-ignored-attributes -funroll-all-loops -Iinclude -std=c++17 $(VARS) -DVERSION=\"$(VERSION)\" -DBRANCH=\"$(BRANCH)\"
CXXFLAGS += -02 -Wno-ignored-attributes -funroll-all-loops -Iinclude -std=c++17 $(VARS) -DVERSION=\"$(VERSION)\" -DBRANCH=\"$(BRANCH)\"

all: fmt toml $(TARGET)

Expand Down
File renamed without changes.

0 comments on commit 70db66f

Please sign in to comment.