wx-compiler/docker/entrypoint
2024-07-07 16:01:24 +08:00

17 lines
553 B
Bash
Executable File

#!/bin/bash
gcc --version
g++ --version
# cmake --verion
cd /workspace
rm -rf ./build
mkdir build
cd build
cmake ..
cmake --build . --config Release --target wcc
cmake --build . --config Release --target wcsc
cmake --build . --config Release --target wcc_module
cmake --build . --config Release --target wcsc_module
readelf -s ./wcc | grep -oP "GLIBC.*" | sort | uniq
readelf -s ./wcsc | grep -oP "GLIBC.*" | sort | uniq
readelf -s ./wcc_module.node | grep -oP "GLIBC.*" | sort | uniq
readelf -s ./wcsc_module.node | grep -oP "GLIBC.*" | sort | uniq