Skip to content

Commit

Permalink
fixing makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewLitteken committed Jul 8, 2019
1 parent 8634df4 commit 5ea8679
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,11 @@ Clang: llvm build
fi \
else \
if [ "$(UNAME_S)" = "Darwin" ]; then \
mkdir -p build && cd build && ../llvm/configure --disable-debug-symbols CC=gcc CXX=g++ && make ENABLE_LIBCPP=1; fi
mkdir -p build && cd build && ../llvm/configure --disable-debug-symbols CC=gcc CXX=g++ && make ENABLE_LIBCPP=1; \
else \
mkdir -p build && cd build && ../llvm/configure --disable-debug-symbols CC=gcc CXX=g++ && make ; fi
mkdir -p build && cd build && ../llvm/configure --disable-debug-symbols CC=gcc CXX=g++ && make ; \
fi \
fi
@if [ -z `echo ${PATH} | grep ${PWD}/Debug+Asserts/bin` ]; then \
export PATH=${PATH}:${PWD}/Debug+Asserts/bin; \
else true; fi
Expand Down

0 comments on commit 5ea8679

Please sign in to comment.