mirror of
https://github.com/zeux/pugixml.git
synced 2024-12-26 21:04:25 +08:00
24d1a4562b
Now the only thing fuzz_setup.sh does is installing new clang; if system clang supports -fsanitize-coverage then fuzz_setup.sh is not required.
12 lines
440 B
Bash
Executable File
12 lines
440 B
Bash
Executable File
#!/bin/bash
|
|
|
|
sudo apt-get --yes install subversion screen gcc g++ cmake ninja-build golang autoconf libtool apache2 python-dev pkg-config zlib1g-dev libgcrypt11-dev
|
|
|
|
mkdir -p clang
|
|
cd clang
|
|
git clone https://chromium.googlesource.com/chromium/src/tools/clang
|
|
cd ..
|
|
clang/clang/scripts/update.py
|
|
sudo cp -rf third_party/llvm-build/Release+Asserts/lib/* /usr/local/lib/
|
|
sudo cp -rf third_party/llvm-build/Release+Asserts/bin/* /usr/local/bin
|