14 lines
455 B
Bash
14 lines
455 B
Bash
#!/bin/bash
|
|
export CFLAGS="-O2 -march=pentium -mtune=pentium4 -DFD_SETSIZE=2048 \
|
|
-fno-strict-aliasing -fomit-frame-pointer -pipe"
|
|
export LDFLAGS="-Wl,--enable-auto-image-base \
|
|
-Wl,--enable-runtime-pseudo-reloc -s"
|
|
|
|
export CC="ccache gcc"
|
|
#make distclean
|
|
../configure --prefix=/cygdrive/c/epic5 \
|
|
--cache-file=/usr/src/config-cache/epic5-cache \
|
|
--with-ssl --without-perl --without-tcl --with-ipv6 \
|
|
--disable-dependency-tracking
|
|
cp sig.inc source/
|