diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/binutils/binutils1 | 14 | ||||
| -rw-r--r-- | include/binutils/binutils2 | 8 | ||||
| -rw-r--r-- | include/binutils/exportsysroot | 1 | ||||
| -rw-r--r-- | include/gcc/gcc1 | 18 | ||||
| -rw-r--r-- | include/gcc/gcc2 | 7 |
5 files changed, 48 insertions, 0 deletions
diff --git a/include/binutils/binutils1 b/include/binutils/binutils1 new file mode 100644 index 0000000..d24267d --- /dev/null +++ b/include/binutils/binutils1 @@ -0,0 +1,14 @@ + mkdir build + cd build + + ../configure \ + --target=i686-elf \ + --with-sysroot \ + --prefix=/usr \ + --bindir=/usr/bin \ + --libdir=/usr/lib/i686-elf \ + --disable-nls \ + --disable-werror + + make + make install diff --git a/include/binutils/binutils2 b/include/binutils/binutils2 new file mode 100644 index 0000000..d99af99 --- /dev/null +++ b/include/binutils/binutils2 @@ -0,0 +1,8 @@ + ../configure \ + --target=i686-elf \ + --with-sysroot=$SYSROOT \ + --prefix=/usr \ + --bindir=/usr/bin \ + --libdir=/usr/lib/i686-elf \ + --disable-nls \ + --disable-werror diff --git a/include/binutils/exportsysroot b/include/binutils/exportsysroot new file mode 100644 index 0000000..5d61861 --- /dev/null +++ b/include/binutils/exportsysroot @@ -0,0 +1 @@ +export SYSROOT=/put/do/biblioteke diff --git a/include/gcc/gcc1 b/include/gcc/gcc1 new file mode 100644 index 0000000..c555f2c --- /dev/null +++ b/include/gcc/gcc1 @@ -0,0 +1,18 @@ + mkdir build + cd build + + ../configure \ + --target=i686-elf \ + --prefix=/usr \ + --disable-nls \ + --disable-plugin \ + --enable-languages=c,c++ \ + --without-headers + + make all-gcc + make all-target-libgcc + + make -k check || true + + make install-gcc + make install-target-libgcc diff --git a/include/gcc/gcc2 b/include/gcc/gcc2 new file mode 100644 index 0000000..d406f6c --- /dev/null +++ b/include/gcc/gcc2 @@ -0,0 +1,7 @@ + ../configure \ + --target=i686-elf \ + --prefix=/usr \ + --with-sysroot=$SYSROOT \ + --disable-nls \ + --disable-plugin \ + --enable-languages=c,c++ |
