mirror of
https://github.com/msojocs/wx-compiler.git
synced 2025-07-19 00:00:04 +08:00
18 lines
561 B
Bash
Executable File
18 lines
561 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
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 |