Skip to content

Commit

Permalink
Placing all non-C++ specific flags on CFLAGS.
Browse files Browse the repository at this point in the history
Because it is included in all commands, anyway.
  • Loading branch information
lvella committed Mar 20, 2024
1 parent da3fccb commit 18096fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ endif

CXX := g++
AS := nasm
CXXFLAGS := -std=c++17 -Wall -pthread -Wno-unused-label -fopenmp $(GRPCPP_FLAGS)
CXXFLAGS := -std=c++17 $(GRPCPP_FLAGS)
LDFLAGS := -lprotobuf -lsodium -lgpr -lpthread -lpqxx -lpq -lgmp -lstdc++ -lgmpxx -lsecp256k1 -lcrypto -luuid -rdynamic $(GRPCPP_LIBS)
CFLAGS := -fopenmp -mavx2
CFLAGS := -fopenmp -Wall -pthread -Wno-unused-label -fopenmp -mavx2
ASFLAGS := -felf64

# Debug build flags
Expand Down

0 comments on commit 18096fe

Please sign in to comment.