cd /path/to wget https://github.com/libexpat/libexpat/archive/refs/tags/R_2_4_7.tar.gz -O libexpat-2.4.7.tar.gz tar xf libexpat-2.4.7.tar.gz
cd libexpat-R_2_4_7/expat cmake . -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_INSTALL_PREFIX=/path/to/libexpat make -j 64 make install
export PATH=/path/to/libexpat/bin:$PATH export LD_LIBRARY_PATH=/path/to/libexpat/lib64:$LD_LIBRARY_PATH export INCLUDE=/path/to/libexpat/include:$INCLUDE