From: Ryan C. Gordon Date: Wed, 19 Aug 2009 02:59:44 +0000 (-0400) Subject: Use a crosstool compiler. X-Git-Url: https://git.jsancho.org/?a=commitdiff_plain;ds=sidebyside;h=13e8f892a042b19ef6521491625ae855e4cc8ef3;p=lugaru.git Use a crosstool compiler. --- diff --git a/makefile b/makefile index bac6da5..f80119f 100644 --- a/makefile +++ b/makefile @@ -16,11 +16,11 @@ LIBVORBISDIR := libvorbis-1.0.1 EXE := $(RUNDIR)/lugaru-bin -CXX := ccache g++ -CC := ccache gcc +CXX := ccache /opt/crosstool/gcc-4.1.2-glibc-2.3.6/i686-unknown-linux-gnu/i686-unknown-linux-gnu/bin/g++ +CC := ccache /opt/crosstool/gcc-4.1.2-glibc-2.3.6/i686-unknown-linux-gnu/i686-unknown-linux-gnu/bin/gcc #CXX := g++ #CC := gcc -LD := g++ +LD := /opt/crosstool/gcc-4.1.2-glibc-2.3.6/i686-unknown-linux-gnu/i686-unknown-linux-gnu/bin/g++ #OPT := -O0 OPT := -O3 -fno-strict-aliasing -falign-loops=16 -fno-math-errno