wine mode && fix llvm makefile

This commit is contained in:
Andrea Fioraldi
2019-09-22 20:01:44 +02:00
parent 9aefe7a040
commit ff1f6af7e9
8 changed files with 58 additions and 5 deletions

View File

@ -83,7 +83,7 @@ CXX = $(LLVM_BINDIR)/clang++
ifeq "$(shell test -e $(CC) || echo 1 )" "1"
# llvm-config --bindir is not providing a valid path, so ...
ifeq "$(shell test -e "$(BIN_DIR)/clang" && echo 1)" "1"
ifeq "$(shell test -e '$(BIN_DIR)/clang' && echo 1)" "1"
# we found one in the local install directory, lets use these
CC = $(BIN_DIR)/clang
CXX = $(BIN_DIR)/clang++