X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Makefile;h=f1d0dc1c4653b3a6ab7d0eb72de38a2bfa4fc4ca;hb=dbe86be0812b36f5c1b5b29d633a8e0971681aa8;hp=56d330a6c8ee221d564fe69dee517f3e0babba3e;hpb=6115cb2e10b3bc143eaf547118ff3060872b4789;p=fedora-riscv.git diff --git a/Makefile b/Makefile index 56d330a..f1d0dc1 100644 --- a/Makefile +++ b/Makefile @@ -34,11 +34,15 @@ KERNEL_VERSION = 4.1.26 # git commits (optional). LOCAL_LINUX_GIT_COPY = $(HOME)/d/linux -# The root packages (plus their dependencies) that we want to -# cross-compile into the stage 3 chroot. -# beecrypt-devel is required to build RPM. -# Packages for usability: nano, grep, less -STAGE3_PACKAGES = gcc rpm-build beecrypt-devel nano grep less +# The root packages (plus their dependencies) that we want to in the +# stage 3 chroot. This must include all the cross-compiled packages +# below, and may also include any noarch package we like. +STAGE3_PACKAGES = ncurses-devel bash coreutils gmp-devel \ +mpfr-devel mpc-devel binutils gcc gcc-c++ util-linux tar \ +gzip zlib-devel file-devel popt-devel beecrypt-devel \ +rpm rpm-build rpm-devel libdb-utils libdb-devel nano \ +grep less strace bzip2-devel make diffutils findutils \ +sed patch hostname gettext-devel # Versions of cross-compiled packages. NCURSES_VERSION = 6.0-20160730 @@ -53,9 +57,10 @@ UTIL_LINUX_VERSION = 2.28 TAR_VERSION = 1.29 GZIP_VERSION = 1.8 ZLIB_VERSION = 1.2.8 -# Needs to match the installed (on host) version, otherwise: -# "Cannot use the installed version of file (xx) to cross-compile file yy" -FILE_VERSION = 5.25 +# Needs to match the version of 'file' installed (on host), otherwise: +# "Cannot use the installed version of file (xx) to cross-compile file yy" +# Also note that 5.25 is definitely broken (segfaults in libmagic:magic_close). +FILE_VERSION = 5.28 POPT_VERSION = 1.16 BEECRYPT_VERSION = 4.2.1 RPM_COMMIT = 95712183458748ea6cafebac1bdd5daa097d9bee @@ -68,6 +73,12 @@ STRACE_COMMIT = f320e1897832fd07a62e18ed288e75d8e79f4c5b STRACE_SHORT_COMMIT = f320e189 BZIP2_VERSION = 1.0.6 MAKE_VERSION = 4.1 +DIFFUTILS_VERSION = 3.4 +FINDUTILS_VERSION = 4.6.0 +SED_VERSION = 4.2 +PATCH_VERSION = 2.7.5 +HOSTNAME_VERSION = 3.15 +GETTEXT_VERSION = 0.19 all: stage1 stage2 stage3 stage4 @@ -282,13 +293,19 @@ stage3: stage3-kernel/linux-$(KERNEL_VERSION)/vmlinux \ stage3-chroot/usr/bin/file \ stage3-chroot/usr/lib64/libpopt.so \ stage3-chroot/usr/lib64/libbeecrypt.so \ - stage3-chroot/usr/bin/rpm \ stage3-chroot/usr/bin/nano \ stage3-chroot/usr/bin/grep \ stage3-chroot/usr/bin/less \ stage3-chroot/usr/bin/strace \ stage3-chroot/usr/bin/bzip2 \ stage3-chroot/usr/bin/make \ + stage3-chroot/usr/bin/diff \ + stage3-chroot/usr/bin/find \ + stage3-chroot/usr/bin/sed \ + stage3-chroot/usr/bin/patch \ + stage3-chroot/usr/bin/hostname \ + stage3-chroot/usr/bin/gettext \ + stage3-chroot/usr/bin/rpm \ stage3-chroot/init \ stage3-disk.img @@ -331,9 +348,9 @@ stage3-chroot-original/etc/fedora-release: stage3-chroot/etc/fedora-release: stage3-chroot-original/etc/fedora-release rm -rf stage3-chroot cp -a stage3-chroot-original stage3-chroot - find stage3-chroot -type d | xargs chmod u+w - find stage3-chroot -type f | xargs chmod u+w - find stage3-chroot -type f | xargs file -N | grep -E '\bELF.*LSB\b' | awk -F: '{print $$1}' | xargs rm -f + find stage3-chroot -type d -print0 | xargs -0 chmod u+w + find stage3-chroot -type f -print0 | xargs -0 chmod u+w + find stage3-chroot -type f -print0 | xargs -0 file -N | grep -E '\bELF.*LSB\b' | awk -F: '{print $$1}' | xargs rm -f rm -f stage3-chroot/lib64/libc.so.6 # Copy in compiled glibc from the riscv-gnu-toolchain sysroot. Only @@ -479,6 +496,8 @@ mpc-$(MPC_VERSION).tar.gz: stage3-chroot/usr/bin/gcc: gcc-$(GCC_X_VERSION).tar.gz rm -rf riscv-gcc-riscv-gcc-$(GCC_X_VERSION) zcat $^ | tar xf - + cd riscv-gcc-riscv-gcc-$(GCC_X_VERSION) && \ + patch -p1 < ../0001-HACKS-TO-GET-GCC-TO-COMPILE.patch mkdir riscv-gcc-riscv-gcc-$(GCC_X_VERSION)/build cd riscv-gcc-riscv-gcc-$(GCC_X_VERSION)/build && \ PATH=$(ROOT)/fixed-gcc:$$PATH \ @@ -493,10 +512,9 @@ stage3-chroot/usr/bin/gcc: gcc-$(GCC_X_VERSION).tar.gz --disable-libquadmath \ --disable-nls \ --disable-multilib -# XXX use make all & make install here. However building libgcc -# fails, see 'broken-gcc.log'. - cd riscv-gcc-riscv-gcc-$(GCC_X_VERSION)/build && PATH=$(ROOT)/fixed-gcc:$$PATH make all-gcc - cd riscv-gcc-riscv-gcc-$(GCC_X_VERSION)/build && make install-gcc DESTDIR=$(ROOT)/stage3-chroot + cd riscv-gcc-riscv-gcc-$(GCC_X_VERSION)/build && PATH=$(ROOT)/fixed-gcc:$$PATH make + cd riscv-gcc-riscv-gcc-$(GCC_X_VERSION)/build && make install DESTDIR=$(ROOT)/stage3-chroot + rm -f stage3-chroot/usr/lib64/*.la gcc-$(GCC_X_VERSION).tar.gz: rm -f $@ $@-t @@ -645,47 +663,6 @@ beecrypt-$(BEECRYPT_VERSION).tar.gz: wget -O $@-t http://downloads.sourceforge.net/sourceforge/beecrypt/beecrypt-$(BEECRYPT_VERSION).tar.gz mv $@-t $@ -# Cross-compile RPM / rpmbuild. -# We build this from a git commit, with a few hacks to the configure -# script. -stage3-chroot/usr/bin/rpm: rpm-$(RPM_SHORT_COMMIT).tar.gz db-$(BDB_VERSION).tar.gz - rm -rf rpm-$(RPM_SHORT_COMMIT) - tar -zxf rpm-$(RPM_SHORT_COMMIT).tar.gz - tar -zxf db-$(BDB_VERSION).tar.gz -C rpm-$(RPM_SHORT_COMMIT) - cd rpm-$(RPM_SHORT_COMMIT) && ln -s db-$(BDB_VERSION) db - cd rpm-$(RPM_SHORT_COMMIT) && \ - patch -p1 < ../0001-RISCV-64-bit-riscv64-support.patch && \ - patch -p1 < ../0002-build-fgetc-returns-int-not-char.patch && \ - patch -p1 < ../0003-HACKS-TO-GET-RPM-TO-CROSS-COMPILE.patch - cd rpm-$(RPM_SHORT_COMMIT) && autoreconf -i - cd rpm-$(RPM_SHORT_COMMIT) && \ - PATH=$(ROOT)/fixed-gcc:$$PATH \ - LDFLAGS=-L$(ROOT)/stage3-chroot/usr/lib64 \ - ./configure \ - --host=riscv64-unknown-linux-gnu \ - --prefix=/usr --libdir=/usr/lib64 \ - --disable-rpath \ - --without-libarchive \ - --without-lua \ - --with-beecrypt \ - --without-archive \ - --without-external-db \ - --enable-ndb \ - --disable-plugins - cd rpm-$(RPM_SHORT_COMMIT) && PATH=$(ROOT)/fixed-gcc:$$PATH make V=1 - cd rpm-$(RPM_SHORT_COMMIT) && PATH=$(ROOT)/fixed-gcc:$$PATH make install DESTDIR=$(ROOT)/stage3-chroot - rm -f stage3-chroot/usr/lib64/*.la - -rpm-$(RPM_SHORT_COMMIT).tar.gz: - rm -f $@ $@-t - wget -O $@-t 'http://rpm.org/gitweb?p=rpm.git;a=snapshot;h=$(RPM_COMMIT);sf=tgz' - mv $@-t $@ - -db-$(BDB_VERSION).tar.gz: - rm -f $@ $@-t - wget -O $@-t http://download.oracle.com/berkeley-db/db-$(BDB_VERSION).tar.gz - mv $@-t $@ - # Cross-compile GNU nano (editor). stage3-chroot/usr/bin/nano: nano-$(NANO_VERSION).tar.gz rm -rf nano-$(NANO_VERSION) @@ -769,7 +746,8 @@ stage3-chroot/usr/bin/bzip2: bzip2-$(BZIP2_VERSION).tar.gz PREFIX=/usr \ CC=riscv64-unknown-linux-gnu-gcc \ AR=riscv64-unknown-linux-gnu-ar \ - RANLIB=riscv64-unknown-linux-gnu-ranlib + RANLIB=riscv64-unknown-linux-gnu-ranlib \ + CFLAGS="-Wall -Winline -O2 -g -D_FILE_OFFSET_BITS=64 -fPIC" cd bzip2-$(BZIP2_VERSION) && \ make install PREFIX=$(ROOT)/stage3-chroot/usr @@ -795,6 +773,150 @@ make-$(MAKE_VERSION).tar.gz: wget -O $@-t https://ftp.gnu.org/gnu/make/make-$(MAKE_VERSION).tar.gz mv $@-t $@ +# Cross-compile GNU diffutils. +stage3-chroot/usr/bin/diff: diffutils-$(DIFFUTILS_VERSION).tar.xz + rm -rf diffutils-$(DIFFUTILS_VERSION) + tar -Jxf $^ + cd diffutils-$(DIFFUTILS_VERSION) && \ + PATH=$(ROOT)/fixed-gcc:$$PATH \ + ./configure \ + --host=riscv64-unknown-linux-gnu \ + --prefix=/usr --libdir=/usr/lib64 + cd diffutils-$(DIFFUTILS_VERSION) && PATH=$(ROOT)/fixed-gcc:$$PATH make + cd diffutils-$(DIFFUTILS_VERSION) && make install DESTDIR=$(ROOT)/stage3-chroot + +diffutils-$(DIFFUTILS_VERSION).tar.xz: + rm -f $@ $@-t + wget -O $@-t https://ftp.gnu.org/gnu/diffutils/diffutils-$(DIFFUTILS_VERSION).tar.xz + mv $@-t $@ + +# Cross-compile GNU findutils. +stage3-chroot/usr/bin/find: findutils-$(FINDUTILS_VERSION).tar.gz + rm -rf findutils-$(FINDUTILS_VERSION) + tar -zxf $^ + cd findutils-$(FINDUTILS_VERSION) && \ + PATH=$(ROOT)/fixed-gcc:$$PATH \ + ./configure \ + --host=riscv64-unknown-linux-gnu \ + --prefix=/usr --libdir=/usr/lib64 + cd findutils-$(FINDUTILS_VERSION) && PATH=$(ROOT)/fixed-gcc:$$PATH make + cd findutils-$(FINDUTILS_VERSION) && make install DESTDIR=$(ROOT)/stage3-chroot + +findutils-$(FINDUTILS_VERSION).tar.gz: + rm -f $@ $@-t + wget -O $@-t https://ftp.gnu.org/gnu/findutils/findutils-$(FINDUTILS_VERSION).tar.gz + mv $@-t $@ + +# Cross-compile GNU sed. +stage3-chroot/usr/bin/sed: sed-$(SED_VERSION).tar.gz + rm -rf sed-$(SED_VERSION) + tar -zxf $^ + cd sed-$(SED_VERSION) && \ + PATH=$(ROOT)/fixed-gcc:$$PATH \ + ./configure \ + --host=riscv64-unknown-linux-gnu \ + --prefix=/usr --libdir=/usr/lib64 + cd sed-$(SED_VERSION) && PATH=$(ROOT)/fixed-gcc:$$PATH make + cd sed-$(SED_VERSION) && make install DESTDIR=$(ROOT)/stage3-chroot + +sed-$(SED_VERSION).tar.gz: + rm -f $@ $@-t + wget -O $@-t https://ftp.gnu.org/gnu/sed/sed-$(SED_VERSION).tar.gz + mv $@-t $@ + +# Cross-compile patch. +stage3-chroot/usr/bin/patch: patch-$(PATCH_VERSION).tar.gz + rm -rf patch-$(PATCH_VERSION) + tar -zxf $^ + cd patch-$(PATCH_VERSION) && \ + PATH=$(ROOT)/fixed-gcc:$$PATH \ + ./configure \ + --host=riscv64-unknown-linux-gnu \ + --prefix=/usr --libdir=/usr/lib64 + cd patch-$(PATCH_VERSION) && PATH=$(ROOT)/fixed-gcc:$$PATH make + cd patch-$(PATCH_VERSION) && make install DESTDIR=$(ROOT)/stage3-chroot + +patch-$(PATCH_VERSION).tar.gz: + rm -f $@ $@-t + wget -O $@-t https://ftp.gnu.org/gnu/patch/patch-$(PATCH_VERSION).tar.gz + mv $@-t $@ + +# Cross-compile hostname. +stage3-chroot/usr/bin/hostname: hostname-$(HOSTNAME_VERSION).tar.gz + rm -rf hostname-$(HOSTNAME_VERSION) + tar -zxf $^ + cd hostname && patch -p1 < ../hostname-rh.patch + cd hostname && \ + PATH=$(ROOT)/fixed-gcc:$$PATH \ + make \ + CC=riscv64-unknown-linux-gnu-gcc \ + CFLAGS="-O2 -g" + cd hostname && make install BASEDIR=$(ROOT)/stage3-chroot + +hostname-$(HOSTNAME_VERSION).tar.gz: + rm -f $@ $@-t + wget -O $@-t http://ftp.de.debian.org/debian/pool/main/h/hostname/hostname_$(HOSTNAME_VERSION).tar.gz + mv $@-t $@ + +# Cross-compile GNU gettext. +stage3-chroot/usr/bin/gettext: gettext-$(GETTEXT_VERSION).tar.gz + rm -rf gettext-$(GETTEXT_VERSION) + tar -zxf $^ + cd gettext-$(GETTEXT_VERSION) && \ + PATH=$(ROOT)/fixed-gcc:$$PATH \ + ./configure \ + --host=riscv64-unknown-linux-gnu \ + --prefix=/usr --libdir=/usr/lib64 + cd gettext-$(GETTEXT_VERSION) && PATH=$(ROOT)/fixed-gcc:$$PATH make + cd gettext-$(GETTEXT_VERSION) && PATH=$(ROOT)/fixed-gcc:$$PATH make install DESTDIR=$(ROOT)/stage3-chroot + rm -f stage3-chroot/usr/lib64/*.la + +gettext-$(GETTEXT_VERSION).tar.gz: + rm -f $@ $@-t + wget -O $@-t https://ftp.gnu.org/gnu/gettext/gettext-$(GETTEXT_VERSION).tar.gz + mv $@-t $@ + +# Cross-compile RPM / rpmbuild. +# We build this from a git commit, with a few hacks to the configure +# script. +stage3-chroot/usr/bin/rpm: rpm-$(RPM_SHORT_COMMIT).tar.gz db-$(BDB_VERSION).tar.gz + rm -rf rpm-$(RPM_SHORT_COMMIT) + tar -zxf rpm-$(RPM_SHORT_COMMIT).tar.gz + tar -zxf db-$(BDB_VERSION).tar.gz -C rpm-$(RPM_SHORT_COMMIT) + cd rpm-$(RPM_SHORT_COMMIT) && ln -s db-$(BDB_VERSION) db + cd rpm-$(RPM_SHORT_COMMIT) && \ + patch -p1 < ../0001-RISCV-64-bit-riscv64-support.patch && \ + patch -p1 < ../0002-build-fgetc-returns-int-not-char.patch && \ + patch -p1 < ../0003-HACKS-TO-GET-RPM-TO-CROSS-COMPILE.patch + cd rpm-$(RPM_SHORT_COMMIT) && autoreconf -i + cd rpm-$(RPM_SHORT_COMMIT) && \ + PATH=$(ROOT)/fixed-gcc:$$PATH \ + LDFLAGS=-L$(ROOT)/stage3-chroot/usr/lib64 \ + ./configure \ + --host=riscv64-unknown-linux-gnu \ + --prefix=/usr --libdir=/usr/lib64 \ + --disable-rpath \ + --without-libarchive \ + --without-lua \ + --with-beecrypt \ + --without-archive \ + --without-external-db \ + --enable-ndb \ + --disable-plugins + cd rpm-$(RPM_SHORT_COMMIT) && PATH=$(ROOT)/fixed-gcc:$$PATH make V=1 + cd rpm-$(RPM_SHORT_COMMIT) && PATH=$(ROOT)/fixed-gcc:$$PATH make install DESTDIR=$(ROOT)/stage3-chroot + rm -f stage3-chroot/usr/lib64/*.la + +rpm-$(RPM_SHORT_COMMIT).tar.gz: + rm -f $@ $@-t + wget -O $@-t 'http://rpm.org/gitweb?p=rpm.git;a=snapshot;h=$(RPM_COMMIT);sf=tgz' + mv $@-t $@ + +db-$(BDB_VERSION).tar.gz: + rm -f $@ $@-t + wget -O $@-t http://download.oracle.com/berkeley-db/db-$(BDB_VERSION).tar.gz + mv $@-t $@ + # Create an /init script. stage3-chroot/init: init.sh install -m 0755 $^ $@