We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcb0a1c commit 5ec4fbcCopy full SHA for 5ec4fbc
2 files changed
CMakeLists.txt
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.13)
2
project(C2Pulse LANGUAGES C CXX)
3
4
set(LLVM_LINK_COMPONENTS support)
5
-add_subdirectory(test)
+add_subdirectory(test/lit-tests)
6
7
# Define which LLVM components we need
8
llvm_map_components_to_libnames(LLVM_LIBS
build.sh
@@ -10,7 +10,7 @@ CLANG_BIN="$LLVM_BUILD_DIR/bin"
10
#Ensure that LLVM is build first.
11
if [[ ! -x "$CLANG_BIN/clang++" ]]; then
12
echo "clang++ not found in $CLANG_BIN!" >&2
13
- echo "Please build LLVM first by running ./build_clang.sh" >&2
+ echo "Please build LLVM first by running ./scripts/build_clang.sh" >&2
14
exit 1
15
fi
16
0 commit comments