urbit/nix/nixcrpkgs/mingw-w64/builder.sh
benjamin-tlon edd57d380d
Finish cc-release cross-compilation. (#1202)
- Fixes the IPC bug
- Fixes the terminfo bug
- Moves the OSX SDK out of our nixcrpkgs fork.
- Vendor nixcrpkgs instead of having it be a submodule.
2019-04-23 19:50:38 -07:00

36 lines
718 B
Bash

source $setup
cp -r $src mingw-w64
chmod -R u+w mingw-w64
cd mingw-w64
for patch in $patches; do
echo applying patch $patch
patch -p1 -i $patch
done
cd ..
if [ -n "$just_headers" ]; then
mkdir build_headers
cd build_headers
../mingw-w64/mingw-w64-headers/configure --prefix=$out $configure_flags
make
make install
cd ..
else
mkdir build_crt_and_headers
cd build_crt_and_headers
../mingw-w64/configure --prefix=$out $configure_flags
make
make install
cd ..
mkdir build_winpthreads
cd build_winpthreads
LDFLAGS="-L${out}/lib" ../mingw-w64/mingw-w64-libraries/winpthreads/configure \
--host=$host --prefix=$out --disable-shared --enable-static
make
make install
cd ..
fi