#!/bin/sh # # gds: reduce configure prms to rtems default (didn't help) # . ./environ.sh if [[ "$TARGET" == "" || "$PREFIX" == "" ]] ; then echo "You need to set: TARGET and PREFIX"; exit 0; fi export PATH=$PATH:$PREFIX/$TARGET #cd insight_build && rm -rf * #../insight_sources/configure -v --quiet --prefix=$PREFIX \ # --target=$TARGET --enable-interwork --enable-multilib \ # --with-gnu-ld --with-gnu-as #make all cd insight_build ../insight_sources/configure -v --quiet --prefix=$PREFIX \ --target=$TARGET --enable-interwork --enable-multilib \ --with-gnu-ld --with-gnu-as # --host=i686-pc-mingw32 --build=i686-pc-linux-gnu make #make install cd ..