another performance improvement for the simplex solver
[org.ibex.core.git] / Makefile.upstream
1 ############################################################################# 
2 #
3 # The Ibex upstream code Makefile
4 #
5
6 # deal with Apple's brokenness
7 setcc := $(shell test `uname` = Darwin && echo "CC=\"/usr/bin/gcc3 -no-cpp-precomp\"")
8
9 # where to get stuff
10 url_binutils-2.13.2.1  := ftp://ftp.gnu.org/gnu/binutils/binutils-2.13.2.1.tar.gz 
11 url_w32api-2.3         := http://unc.dl.sourceforge.net/sourceforge/mingw/w32api-2.3.tar.gz
12 url_mingw-runtime-3.0  := http://unc.dl.sourceforge.net/sourceforge/mingw/mingw-runtime-3.0.tar.gz
13 url_freetype-2.1.4     := http://unc.dl.sourceforge.net/sourceforge/freetype/freetype-2.1.4.tar.gz
14 url_gcc-3.3            := http://mirrors.rcn.net/pub/sourceware/gcc/releases/gcc-3.3/gcc-3.3.tar.gz 
15 url_jpeg-6b            := http://www.ijg.org/files/jpegsrc.v6b.tar.gz
16 url_jikes-1.18         := http://dist.xwt.org/jikes-1.18.tgz
17 url_libmspack-20030726 := http://www.kyz.uklinux.net/downloads/libmspack-20030726.tar.gz
18 url_vera-1.10          := http://fgo-temp.acc.umu.se/pub/GNOME/sources/ttf-bitstream-vera/1.10/ttf-bitstream-vera-1.10.tar.gz
19 url_WindowMaker-0.80.2 := http://windowmaker.org/pub/source/release/WindowMaker-0.80.2.tar.gz
20 url_bcel-5.1           := http://www.apache.org/dist/jakarta/bcel/binaries/bcel-5.1.tar.gz
21
22 .install_binutils-2.13.2.1_powerpc-apple-darwin: .vendor
23         rm -rf upstream/darwin-linker/src
24         cd upstream/darwin-linker; tar xvzf ../install/powerpc-apple-darwin/cctools-478.tgz
25 ifneq ($(shell uname),Darwin)
26         cd upstream/darwin-linker/src/cctools; for A in ../../patches/*.patch; do patch -p0 < $$A; done
27         cp upstream/darwin-linker/src/cctools/ld/fake-mach.c upstream/darwin-linker/src/cctools/libstuff
28         cd upstream/darwin-linker/src/; mkdir macosx-include; cd macosx-include; chmod +x ../../links.sh; ../../links.sh
29 endif
30         make -C upstream/darwin-linker/src/cctools/libstuff
31         make -C upstream/darwin-linker/src/cctools/misc
32         touch upstream/darwin-linker/src/cctools/misc/makeUser.c upstream/darwin-linker/src/cctools/misc/make.h
33         make -C upstream/darwin-linker/src/cctools/misc libtool.NEW
34         make -C upstream/darwin-linker/src/cctools/ld; true
35         make -C upstream/darwin-linker/src/cctools/as
36         make -C upstream/darwin-linker/src/cctools/ar
37         mkdir -p upstream/install/powerpc-apple-darwin/bin
38         cp upstream/darwin-linker/src/cctools/ld/ld_dir/ld.NEW upstream/install/powerpc-apple-darwin/bin/ld.NEW
39         echo -e "#!/bin/sh\n"`pwd`"/upstream/install/powerpc-apple-darwin/bin/ld.NEW -dylib_file /usr/lib/system/libmathCommon.A.dylib:"`pwd`"/upstream/install/powerpc-apple-darwin/lib/libmathCommon.A.dylib -L"`pwd`"/upstream/install/powerpc-apple-darwin/lib \$$@\n" > upstream/install/powerpc-apple-darwin/bin/ld
40         chmod +x upstream/install/powerpc-apple-darwin/bin/ld
41         echo -e "#!/bin/sh\n"`pwd`"/upstream/install/powerpc-apple-darwin/bin/apple-libtool \$$1 -o \$$1\n" > upstream/install/powerpc-apple-darwin/bin/ranlib
42         chmod +x upstream/install/powerpc-apple-darwin/bin/ranlib
43         cp upstream/darwin-linker/src/cctools/misc/libtool.NEW upstream/install/powerpc-apple-darwin/bin/apple-libtool
44         cp upstream/darwin-linker/src/cctools/misc/strip.NEW upstream/install/powerpc-apple-darwin/bin/strip
45         cp upstream/darwin-linker/src/cctools/as/appc_dir/as upstream/install/powerpc-apple-darwin/bin/as
46         cp upstream/darwin-linker/src/cctools/ar/ar.NEW upstream/install/powerpc-apple-darwin/bin/ar.NEW
47         echo -e "#!/bin/sh\n"`pwd`"/upstream/install/powerpc-apple-darwin/bin/ar.NEW \$$@\n"`pwd`"/upstream/install/powerpc-apple-darwin/bin/ranlib \$$2\n" > upstream/install/powerpc-apple-darwin/bin/ar
48         chmod +x upstream/install/powerpc-apple-darwin/bin/ar
49         mkdir -p upstream/install/bin
50         cd upstream/install/bin; ln -sf ../powerpc-apple-darwin/bin/ld powerpc-apple-darwin-ld
51         cd upstream/install/bin; ln -sf ../powerpc-apple-darwin/bin/as powerpc-apple-darwin-as
52         cd upstream/install/bin; ln -sf ../powerpc-apple-darwin/bin/ar powerpc-apple-darwin-ar
53         cd upstream/install/bin; ln -sf ../powerpc-apple-darwin/bin/ranlib powerpc-apple-darwin-ranlib
54         cd upstream/install/bin; ln -sf ../powerpc-apple-darwin/bin/strip powerpc-apple-darwin-strip
55         echo -e "#!/bin/sh\nc++filt \$$@\n" > upstream/install/bin/c++filt3; chmod +x upstream/install/bin/c++filt3
56         cd upstream/install/powerpc-apple-darwin/bin; ln -sf ../../bin/c++filt3
57         touch $@
58
59
60 # how to configure it
61 ifneq ($(shell uname),$(platform))
62 configure_gcc-3.3                       += --with-headers=$(shell pwd)/upstream/install/$(target)/include
63 endif
64 configure_gcc-3.3                       += --enable-languages=c,c++,java --enable-gc-type=boehm --disable-jvmpi --without-libffi
65 configure_gcc-3.3                       += --with-ld=$(shell pwd)/upstream/install/bin/$(target)-ld
66 configure_gcc-3.3                       += --with-as=$(shell pwd)/upstream/install/bin/$(target)-as
67 ifneq ($(platform),Darwin)
68 configure_gcc-3.3                       += --with-gnu-ld --with-gnu-as
69 endif
70 configure_gcc-3.3                       += --disable-java-awt --disable-interpreter --enable-libgcj
71 configure_gcc-3.3                       += --disable-shared --enable-static --disable-jni
72 configure_binutils-2.13.2.1             += --disable-shared --enable-static
73 configure_gcc-3.3_powerpc-apple-darwin  += --enable-threads=posix --disable-hash-synchronization --disable-multilib
74 configure_gcc-3.3_i686-pc-mingw32       += --enable-threads=win32 --enable-hash-synchronization
75 configure_gcc-3.3_i686-pc-linux-gnu     += --enable-threads=posix --enable-hash-synchronization
76 configure_gcc-3.3_sparc-sun-solaris2.7  += --enable-threads=posix --disable-hash-synchronization --disable-multilib
77
78 configure_WindowMaker-0.80.2_$(target)  += --prefix=$(shell pwd)/upstream/install/$(target)
79 configure_WindowMaker-0.80.2_$(target)  += --host=i686-pc-linux-gnu --x-libraries=$(shell pwd)/upstream/install/$(target)/lib
80
81 #environment_gcc-3.3_i686-pc-linux-gnu   += CFLAGS="-Wl,-ldl"
82
83 # libjpeg's configury doesn't obey --target
84 environment_jpeg-6b_$(target)           += PATH=$(shell pwd)/upstream/install/$(target)/bin:$$PATH
85 environment_jpeg-6b_$(target)           += CC=$(shell pwd)/upstream/install/bin/$(target)-gcc
86 environment_jpeg-6b_$(target)           += CFLAGS="-Os -ffunction-sections -fdata-sections -I ."
87 environment_jpeg-6b_$(target)           += AR="$(shell pwd)/upstream/install/$(target)/bin/ar rc"
88 environment_jpeg-6b_$(target)           += AR2=$(shell pwd)/upstream/install/$(target)/bin/ranlib
89
90 # libmspack configury doesn't obey --target
91 environment_libmspack-20030726_$(target) += PATH=$(shell pwd)/upstream/install/$(target)/bin:$$PATH
92 environment_libmspack-20030726_$(target) += CC=$(shell pwd)/upstream/install/bin/$(target)-gcc
93 environment_libmspack-20030726_$(target) += AR="$(shell pwd)/upstream/install/$(target)/bin/ar"
94 environment_libmspack-20030726_$(target) += AR2=$(shell pwd)/upstream/install/$(target)/bin/ranlib
95 environment_libmspack-20030726_$(target) += OPTIM="-ffunction-sections -fdata-sections -O3"
96
97 # WindowMaker configury doesn't obey --target
98 environment_WindowMaker-0.80.2_$(target) += PATH=$(shell pwd)/upstream/install/$(target)/bin:$$PATH
99 environment_WindowMaker-0.80.2_$(target) += CC=$(shell pwd)/upstream/install/bin/$(target)-gcc
100 environment_WindowMaker-0.80.2_$(target) += AR="$(shell pwd)/upstream/install/$(target)/bin/ar"
101 environment_WindowMaker-0.80.2_$(target) += AR2=$(shell pwd)/upstream/install/$(target)/bin/ranlib
102 environment_WindowMaker-0.80.2_$(target) += LDFLAGS="-lXext -ldl"
103 make_install_WindowMaker-0.80.2_$(target) := -C WINGs install; make -C wrlib
104 make_WindowMaker-0.80.2_$(target) := WINGs
105
106 environment_gcc_3.3_$(target)           += PATH=$(shell pwd)/upstream/install/bin:$$PATH
107
108 .PRECIOUS: .vendor .download_% .configure_%_$(target) .install_%_$(target)
109
110 .download_nestedvm:
111         mkdir -p upstream/nestedvm
112         cd upstream/nestedvm; wget -nH -r http://nestedvm.ibex.org/
113         touch $@
114
115 .build_nestedvm: .download_nestedvm
116         cd upstream/nestedvm; make
117         touch $@
118
119 .install_nestedvm: .build_nestedvm
120         touch $@
121
122 # vendor-supplied binaries and headers; this is stuff that comes with various OSes
123 vendor: .vendor; @true
124 .vendor:
125         @echo -e "\n\033[1mdownloading vendor-supplied headers and libraries...\033[0m"
126         mkdir -p upstream/install
127         curl http://www.megacz.com/vendor.tgz | tar xzf - -C upstream/install
128         mkdir -p upstream/install/i686-pc-mingw32
129         curl $(url_w32api-2.3) | tar xzf - -C upstream/install/i686-pc-mingw32
130         curl $(url_mingw-runtime-3.0) | tar xzf - -C upstream/install/i686-pc-mingw32
131 ifeq ($(shell uname),Linux)
132         cd upstream/install/i686-pc-linux-gnu/include; rm -rf *; ln -sf /usr/include/* .
133 endif
134         touch .vendor
135
136 .download_gcc-3.3_powerpc-apple-darwin:
137         @echo -e "\n\033[1mdownloading $*...\033[0m"
138         mkdir -p upstream/gcc-3.3
139         curl $(url_gcc-3.3) | tar xzf - -C upstream/gcc-3.3
140         mv upstream/gcc-3.3/gcc-3.3 upstream/gcc-3.3/src-darwin; true
141         mv upstream/gcc-3.3/libmspack upstream/gcc-3.3/src-darwin; true
142         (cd upstream/gcc-3.3/src-darwin && for A in ../patches/*.patch; do patch -p0 -l < $$A; done); true
143         (cd upstream/gcc-3.3/src-darwin && for A in ../patches-darwin/*.patch; do patch -p0 -l < $$A; done); true
144         touch $@
145
146 .download_%:
147         @echo -e "\n\033[1mdownloading $*...\033[0m"
148         mkdir -p upstream/$*
149         curl $(url_$*) | tar xzf - -C upstream/$*
150         mv upstream/$*/$* upstream/$*/src; true
151         mv upstream/$*/libmspack upstream/$*/src; true
152         (test -e upstream/$*/patches && cd upstream/$*/src && for A in ../patches/*.patch; do patch -p0 -l < $$A; done); true
153         touch $@
154
155 .configure_gcc-3.3_powerpc-apple-darwin: .download_gcc-3.3_powerpc-apple-darwin .install_binutils-2.13.2.1_powerpc-apple-darwin
156         @echo -e "\n\033[1mconfiguring gcc...\033[0m"
157         mkdir -p upstream/gcc-3.3/build-$(target)
158         cd upstream/gcc-3.3/build-$(target); \
159                 $(setcc) $(environment_gcc-3.3_$(target)) ../src-darwin/configure \
160                 --target=$(target) \
161                 --prefix=`cd ../..; pwd`/install \
162                 $(configure_gcc-3.3) \
163                 $(configure_gcc-3.3_$(target))
164         touch $@
165
166 .configure_gcc-3.3_$(target): .install_binutils-2.13.2.1_$(target)
167
168 .configure_%_$(target): .vendor .download_%
169         @echo -e "\n\033[1mconfiguring $*...\033[0m"
170         mkdir -p upstream/$*/build-$(target)
171         cd upstream/$*/build-$(target); \
172                 $(setcc) $(environment_$*_$(target)) ../src/configure \
173                 --target=$(target) \
174                 --prefix=`cd ../..; pwd`/install \
175                 $(configure_$*) \
176                 $(configure_$*_$(target))
177         touch $@
178
179 .configure_libmspack-20030726_$(target): .download_libmspack-20030726 .install_gcc-3.3_$(target)
180         mkdir -p upstream/libmspack-20030726/build-$(target)
181         cd upstream/libmspack-20030726/build-$(target); ln -sf ../src/mspack/* .
182         touch $@
183
184 .install_binutils-2.13.2.1_mips-unknown-elf: .install_mips2java; touch $@
185 .install_gcc-3.3_mips-unknown-elf:           .install_mips2java; touch $@
186
187 .download_mips2java:
188         mkdir -p upstream/install
189         curl http://www.megacz.com/tmp/mips.snapshot.tgz | tar -C upstream -xvzf -
190 #       echo '/1 :pserver:cvs@cvs.ibex.org:2401/ A' >> ~/.cvspass
191 #       cd upstream; cvs -d :pserver:cvs@cvs.ibex.org:/ co mips
192         cd upstream/mips/upstream; ln -sf `cd ../..; pwd`/install
193         touch $@
194
195 .install_mips2java: .download_mips2java
196         (cd upstream/mips; make)
197         touch $@
198
199 .install_freetype-2.1.4_mips-unknown-elf: .install_mips2java .download_freetype-2.1.4
200         cd upstream/freetype-2.1.4/src; \
201            make setup ansi; \
202            PATH=$$PATH:`pwd`/../../install/bin make \
203               CC=mips-unknown-elf-gcc \
204               AR=mips-unknown-elf-ar \
205               CFLAGS="-c -ffunction-sections -fdata-sections -O3"
206         upstream/install/bin/mips-unknown-elf-ranlib upstream/freetype-2.1.4/src/objs/libfreetype.a
207         touch $@
208
209 .build_%_$(target): .configure_%_$(target)
210         @echo -e "\n\033[1mbuilding $*...\033[0m"
211         cd upstream/$*/build-$(target); \
212                 $(setcc) PATH=$$PATH:`pwd`/../../install/bin \
213                 $(environment_$*_$(target)) \
214                 make $(make_$*_$(target)) $(setcc) $(environment_$*_$(target))
215         touch $@
216
217 .install_libmspack-20030726_$(target): .build_libmspack-20030726_$(target); true
218
219 .install_%_$(target): .build_%_$(target)
220         @echo -e "\n\033[1minstalling $*...\033[0m"
221         cd upstream/$*/build-$(target); \
222                 $(setcc) PATH=$$PATH:`pwd`/../../install/bin \
223                 $(environment_$*_$(target)) \
224                 make $(make_install_$*_$(target)) install $(setcc) $(environment_$*_$(target))
225         touch $@
226
227 # jikes has a special target to autodetect a pre-installed jikes, and to autodetect the JVM's $CLASSPATH
228 .jikes:
229         @echo -e "\n\033[1mdetecting your jikes installation...\033[0m"
230         echo "#!/bin/sh" > .jikes
231 ifeq ($(shell javac -version 2>&1 | head -n 1),javac 1.5.0-beta)
232         echo -n 'PATH=upstream/install/bin:$$PATH javac -classpath upstream/bcel-5.1/src/bcel-5.1.jar:build/class $$@ -d build/class/ -sourcepath build/java/:upstream/mips:upstream/mips/build:src' >> .jikes
233 else
234         echo -n 'PATH=upstream/install/bin:$$PATH jikes -classpath upstream/bcel-5.1/src/bcel-5.1.jar:build/class $$@ -d build/class/ -sourcepath build/java/:upstream/mips:upstream/mips/build:src ' >> .jikes
235         (type jikes && (jikes --version | grep "Version 1.18")) || make .install_jikes-1.18_ target=
236         echo -n "$(jikes_flags) -bootclasspath " >> .jikes
237         echo "public class GetBootClassPath { public static void main(String[] s) { " > GetBootClassPath.java
238         echo "System.out.println(System.getProperty(\"sun.boot.class.path\")); } }"  >> GetBootClassPath.java
239         javac GetBootClassPath.java
240         java -cp . GetBootClassPath >> .jikes
241         rm GetBootClassPath.*
242 endif
243         echo 'EXIT=$$?' >> .jikes
244         echo 'exit $$EXIT' >> .jikes
245         mv .jikes .jikes+
246         cp .jikes+ .jikes
247         chmod +x .jikes