File tree 1 file changed +5
-7
lines changed
1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Define the default target now so that it is always the first target
2
- BUILD_TARGETS = main quantize quantize-stats perplexity embedding vdot train-text-from-scratch simple libembdinput.so embd-input-test
3
-
4
- ifdef LLAMA_BUILD_SERVER
5
- BUILD_TARGETS += server
6
- LLAMA_SERVER_VERBOSE ?= 1
7
- server : private CXXFLAGS += -DSERVER_VERBOSE=$(LLAMA_SERVER_VERBOSE )
8
- endif
2
+ BUILD_TARGETS = main quantize quantize-stats perplexity embedding vdot train-text-from-scratch simple server libembdinput.so embd-input-test
9
3
10
4
default : $(BUILD_TARGETS )
11
5
61
55
CXXFLAGS += -DNDEBUG
62
56
endif
63
57
58
+ ifdef LLAMA_SERVER_VERBOSE
59
+ CXXFLAGS += -DSERVER_VERBOSE=$(LLAMA_SERVER_VERBOSE)
60
+ endif
61
+
64
62
# warnings
65
63
CFLAGS += -Wall -Wextra -Wpedantic -Wcast-qual -Wdouble-promotion -Wshadow -Wstrict-prototypes -Wpointer-arith
66
64
CXXFLAGS += -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wno-multichar
You can’t perform that action at this time.
0 commit comments