diff options
| author | Aleksa Vučković <aleksav013@gmail.com> | 2021-12-31 14:59:29 +0100 |
|---|---|---|
| committer | Aleksa Vučković <aleksav013@gmail.com> | 2021-12-31 14:59:29 +0100 |
| commit | c0afee36ea5b3cc7e613ee4021b9a91a3c6f39a4 (patch) | |
| tree | 94baaec412816b4ce1a2d38b57c6f5a5985a0590 /include/gcc | |
| parent | 96c4c6a5bbadc9609896e586c43d6853ae91f26e (diff) | |
Initial commit
Diffstat (limited to 'include/gcc')
| -rw-r--r-- | include/gcc/gcc1 | 18 | ||||
| -rw-r--r-- | include/gcc/gcc2 | 7 |
2 files changed, 25 insertions, 0 deletions
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++ |
