From 3478ddeeb0764acfd8975e73f4287891e76d3179 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Sun, 8 Oct 2023 11:59:01 +0800 Subject: [PATCH] change `clang++` into `clang` --- README.md | 2 +- build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ebce1fe3..bb9875f6 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ To compile it with your project, these flags must be set: For development build on Linux, use this snippet. ```bash # prerequisites -sudo apt-get install libc++-dev libc++abi-dev clang++ +sudo apt-get install libc++-dev libc++abi-dev clang # build the repo bash build.sh # unittest diff --git a/build.sh b/build.sh index 473b1f7d..0a2303f4 100644 --- a/build.sh +++ b/build.sh @@ -10,7 +10,7 @@ fi # Check if clang++ is installed if ! type -P clang++ >/dev/null 2>&1; then echo "clang++ is required and not installed. Kindly install it." - echo "Run: sudo apt-get install libc++-dev libc++abi-dev clang++" + echo "Run: sudo apt-get install libc++-dev libc++abi-dev clang" exit 1 fi