mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
7 lines
207 B
Bash
Executable File
7 lines
207 B
Bash
Executable File
#!/usr/bin/sh
|
|
set -ex
|
|
cmake -B ${BUILD_DIR} -S ${SRC_DIR} -GNinja \
|
|
-DLIEF_USE_CCACHE=off \
|
|
-DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DCMAKE_C_COMPILER=/usr/bin/clang
|
|
ninja -C ${BUILD_DIR} LIB_LIEF
|