Skip to content

Commit

Permalink
reverting to no wrap flags for the linker.
Browse files Browse the repository at this point in the history
  • Loading branch information
carzaniga committed Sep 10, 2024
1 parent e6259e1 commit 6147d24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion basic_testing.mk
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ BT_WRAP_FLAGS := $(foreach S,$(BT_WRAPPED_SYMBOLS),-Wl,--wrap=$(S))
# we must assume there are some C++ sources, so we must link with $(CXX)
#
$(TESTS_DIR)/%: $(TESTS_DIR)/%.o $(OBJECTS)
$(CXX) $(CXXFLAGS) $(LDFLAGS) $(BT_WRAP_FLAGS) $(TESTS_DIR)/$*.o $(OBJECTS) -o $@
$(CXX) $(CXXFLAGS) $(LDFLAGS) $(TESTS_DIR)/$*.o $(OBJECTS) -o $@

.PHONY: check-bin
check-bin: $(TESTS_BIN)
Expand Down

0 comments on commit 6147d24

Please sign in to comment.