X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Makefile.upstream;h=111ee5191d80650f4d445f9583e21ffcbb82ca6b;hb=bd0934072c09f7570abcd76a9281f6e64f21da16;hp=620411c7e22ac25a45bea6c580f33aee3fedf256;hpb=067fcf0556752492c6396bc01dff0bf266199651;p=org.ibex.core.git diff --git a/Makefile.upstream b/Makefile.upstream index 620411c..111ee51 100644 --- a/Makefile.upstream +++ b/Makefile.upstream @@ -16,6 +16,7 @@ url_gcc-3.3 := http://mirrors.rcn.net/pub/sourceware/gcc/releases/gcc url_jpeg-6b := http://www.ijg.org/files/jpegsrc.v6b.tar.gz url_jikes-1.18 := http://www.megacz.com/tmp/jikes-1.18.tgz #ftp://www-126.ibm.com/pub/jikes/1.18/jikes-1.18.tar.gz url_libmspack-20030726 := http://www.kyz.uklinux.net/downloads/libmspack-20030726.tar.gz +url_vera-1.10 := http://ftp.gnome.org/pub/GNOME/sources/ttf-bitstream-vera/1.10/ttf-bitstream-vera-1.10.tar.gz .install_binutils-2.13.2.1_powerpc-apple-darwin: .vendor rm -rf upstream/darwin-linker/src @@ -61,16 +62,21 @@ endif .configure_newlib-1.11.0_$(target): .install_gcc-3.3_$(target) # how to configure it -configure_gcc-3.3 += --enable-languages=c,c++,java --enable-gc-type=boehm -configure_gcc-3.3 += --disable-shared --disable-jvmpi +configure_gcc-3.3 += --enable-languages=c,c++,java --enable-gc-type=boehm --disable-jvmpi +ifneq ($(platform),Solaris) +configure_gcc-3.3 += --disable-shared +else +configure_gcc-3.3 += --enable-shared +endif configure_gcc-3.3 += --disable-java-awt --disable-interpreter --enable-static --enable-libgcj ifneq ($(shell uname),$(platform)) +ifneq ($(target),mips-unknown-elf) configure_gcc-3.3 += --with-gnu-ld=$(shell pwd)/upstream/install/bin/$(target)-ld configure_gcc-3.3 += --with-as=$(shell pwd)/upstream/install/bin/$(target)-as -configure_gcc-3.3_powerpc-apple-darwin += --with-headers=$(shell pwd)/upstream/install/$(target)/include +configure_gcc-3.3 += --with-headers=$(shell pwd)/upstream/install/$(target)/include +endif endif configure_gcc-3.3_powerpc-apple-darwin += --enable-threads=posix --disable-hash-synchronization --disable-multilib -configure_gcc-3.3_i686-pc-mingw32 += --with-headers=$(shell pwd)/upstream/install/$(target)/include configure_gcc-3.3_i686-pc-mingw32 += --enable-threads=win32 --enable-hash-synchronization configure_gcc-3.3_i686-pc-linux-gnu += --enable-threads=posix --enable-hash-synchronization configure_gcc-3.3_sparc-sun-solaris2.7 += --enable-threads=posix --disable-multilib @@ -87,7 +93,7 @@ environment_jpeg-6b_$(target) += AR2=$(shell pwd)/upstream/install/$(t # libmspack configury doesn't obey --target environment_libmspack-20030726_$(target) += PATH=$(shell pwd)/upstream/install/$(target)/bin:$$PATH environment_libmspack-20030726_$(target) += CC=$(shell pwd)/upstream/install/bin/$(target)-gcc -environment_libmspack-20030726_$(target) += AR="$(shell pwd)/upstream/install/$(target)/bin/ar rc" +environment_libmspack-20030726_$(target) += AR="$(shell pwd)/upstream/install/$(target)/bin/ar" environment_libmspack-20030726_$(target) += AR2=$(shell pwd)/upstream/install/$(target)/bin/ranlib environment_gcc_3.3_$(target) += PATH=$(shell pwd)/upstream/install/bin:$$PATH @@ -103,6 +109,10 @@ vendor: .vendor; @true mkdir -p upstream/install/i686-pc-mingw32 curl $(url_w32api-2.3) | tar xzf - -C upstream/install/i686-pc-mingw32 curl $(url_mingw-runtime-3.0) | tar xzf - -C upstream/install/i686-pc-mingw32 +ifeq ($(shell uname),Linux) + rm -rf upstream/install/i686-pc-linux-gnu/include + ln -sf /usr/include upstream/install/i686-pc-linux-gnu/include +endif touch .vendor .download_%: @@ -110,7 +120,7 @@ vendor: .vendor; @true mkdir -p upstream/$* curl $(url_$*) | tar xzf - -C upstream/$* mv upstream/$*/$* upstream/$*/src; true - (test -e upstream/$*/patches && cd upstream/$*/src && for A in ../patches/*.patch; do patch -p0 < $$A; done); true + (test -e upstream/$*/patches && cd upstream/$*/src && for A in ../patches/*.patch; do patch -p0 -l < $$A; done); true touch $@ .configure_%_$(target): .download_% @@ -124,22 +134,28 @@ vendor: .vendor; @true $(configure_$*_$(target)) touch $@ -.install_libmspack-20030726_$(target): .install_gcc-3.3_$(target) .install_newlib-1.11.0_$(target) -.configure_libmspack-20030726_$(target): .download_libmspack-20030726 +.configure_libmspack-20030726_$(target): .download_libmspack-20030726 .install_gcc-3.3_$(target) .install_newlib-1.11.0_$(target) mkdir -p upstream/libmspack-20030726/build-$(target) cd upstream/libmspack-20030726/build-$(target); ln -sf ../libmspack/mspack/* . + touch $@ + +.install_libmspack-20030726_$(target): .build_libmspack-20030726_$(target) + touch $@ .install_freetype-2.1.4_mips-unknown-elf: .install_gcc-3.3_mips-unknown-elf .install_newlib-1.11.0_mips-unknown-elf .download_freetype-2.1.4 cd upstream/freetype-2.1.4/src; make setup ansi; PATH=$$PATH:`pwd`/../../install/bin make CC=mips-unknown-elf-gcc AR=mips-unknown-elf-ar upstream/install/bin/mips-unknown-elf-ranlib upstream/freetype-2.1.4/src/objs/libfreetype.a touch $@ -.install_%_$(target): .configure_%_$(target) +.build_%_$(target): .configure_%_$(target) @echo -e "\n\033[1mbuilding $*...\033[0m" cd upstream/$*/build-$(target); \ $(setcc) PATH=$$PATH:`pwd`/../../install/bin \ $(environment_$*_$(target)) \ make $(setcc) $(environment_$*_$(target)) + touch $@ + +.install_%_$(target): .build_%_$(target) @echo -e "\n\033[1minstalling $*...\033[0m" cd upstream/$*/build-$(target); \ $(setcc) PATH=$$PATH:`pwd`/../../install/bin \