- added work dir

- added .gitigore.templ
This commit is contained in:
2022-06-30 17:31:16 +02:00
parent d2bc95292d
commit ae7bc7083b
2 changed files with 7 additions and 1 deletions
+2
View File
@@ -0,0 +1,2 @@
.gitignore
work/
+5 -1
View File
@@ -1,6 +1,7 @@
#!/bin/sh
TARGET=mips-elf
PREFIX=$(pwd)/install
WORK_DIR=$(pwd)/work
PREFIX=$WORK_DIR/install
SRC_BINUTILS=binutils-2.36
SRC_GCC=gcc-10.2.0
@@ -10,6 +11,9 @@ SRC_MPFR=mpfr-4.1.0
SRC_MPC=mpc-1.2.1
SRC_GDB=gdb-10.1
mkdir -p $WORK_DIR
cd $WORK_DIR
# ---------------------------------------------------------------
# 10. Binutils bauen und installieren
# ---------------------------------------------------------------