Attempt to fix cxx-test for OOT builds.

This commit is contained in:
Devin Matthews
2021-09-10 13:38:27 -05:00
parent eaea67401c
commit fbb3560cb8
2 changed files with 2 additions and 2 deletions

View File

@@ -35,4 +35,4 @@
.PHONY: all cxx-test
all: cxx-test
$(CXX) -std=c++0x -o cxx-test.x -I$(INCLUDE_DIR) cxx-test.cxx -L$(LIB_DIR) -lblis
$(CXX) -std=c++0x -o $(BUILD_DIR)/cxx-test.x -I$(INCLUDE_DIR) cxx-test.cxx -L$(LIB_DIR) -lblis

View File

@@ -55,4 +55,4 @@ if [ ! -e $SOURCE_DIR/travis/cxx/Makefile ]; then
exit 1
fi
make -C $SOURCE_DIR/travis/cxx INCLUDE_DIR=$INCLUDE_DIR LIB_DIR=$LIB_DIR
make -C $SOURCE_DIR/travis/cxx INCLUDE_DIR=$INCLUDE_DIR LIB_DIR=$LIB_DIR BUILD_DIR=$BUILD_DIR