Skip to content

Commit 0760a99

Browse files
committed
Remember that CPPFLAGS and CXXFLAGS are in fact different
1 parent d0ea975 commit 0760a99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ else
610610
endif
611611

612612
test/build_graph: test/build_graph.o $(LIB_DIR)/libvg.a
613-
$(CXX) $(INCLUDE_FLAGS) $(CPPFLAGS) -o test/build_graph $(PRE_LINK_DEPS) test/build_graph.o $(LD_LIB_DIR_FLAGS) $(LDFLAGS) $(LIB_DIR)/libvg.a $(LD_LIB_FLAGS) $(START_STATIC) $(LD_STATIC_LIB_FLAGS) $(END_STATIC) $(LD_STATIC_LIB_DEPS) $(LD_EXE_LIB_FLAGS)
613+
$(CXX) $(INCLUDE_FLAGS) $(CPPFLAGS) $(CXXFLAGS) -o test/build_graph $(PRE_LINK_DEPS) test/build_graph.o $(LD_LIB_DIR_FLAGS) $(LDFLAGS) $(LIB_DIR)/libvg.a $(LD_LIB_FLAGS) $(START_STATIC) $(LD_STATIC_LIB_FLAGS) $(END_STATIC) $(LD_STATIC_LIB_DEPS) $(LD_EXE_LIB_FLAGS)
614614
# UCSC's HX Antimalware endpoint security thinks test/build_graph is Atomic
615615
# macOS Stealer if the debug symbols are in it. It probably isn't. But we
616616
# need to delete the debug symbols or our binary will get deleted shortly

0 commit comments

Comments
 (0)