mirror of
https://github.com/GerbilSoft/rvthtool.git
synced 2025-06-18 19:45:35 -04:00

Compiled using gcc-13.2.0 and MinGW-w64 11.0.0. NOTE: The .debug files are no longer included because no one used them.
10 lines
401 B
Bash
Executable File
Vendored
10 lines
401 B
Bash
Executable File
Vendored
#!/bin/bash
|
|
export CFLAGS="-O2 -march=i686 -pipe -static-libgcc -fstrict-aliasing -fcf-protection -ftree-vectorize -mstackrealign"
|
|
export LDFLAGS="-Wl,-O1 -static-libgcc -Wl,--dynamicbase -Wl,--nxcompat -Wl,--large-address-aware -Wl,--subsystem,console:5.01"
|
|
../configure --host=i686-w64-mingw32 \
|
|
--enable-mini-gmp \
|
|
--enable-fat \
|
|
--enable-x86-aesni \
|
|
--enable-x86-sha-ni \
|
|
--enable-x86-pclmul
|