diff options
author | Marvin Borner | 2020-02-17 21:16:25 +0100 |
---|---|---|
committer | Marvin Borner | 2020-02-17 21:16:25 +0100 |
commit | 86ef6a779a42cf5701632ccb82714a006bae4ee9 (patch) | |
tree | 77e70a3f203b8c97dc97866c28731a3768ad8a7e | |
parent | 45184af20936cb889b658e69e00a0bb3d522757f (diff) |
I AM SPEED
Implemented compile cache so I can develop as fast as a magician
-rw-r--r-- | .github/workflows/build.yml | 2 | ||||
-rw-r--r-- | README.md | 1 | ||||
-rwxr-xr-x | run | 6 |
3 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90e7cfa..3e9e71a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Install - run: sudo apt-get update && sudo apt-get install -y build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libcloog-isl-dev libisl-0.18-dev curl nasm genisoimage qemu qemu-kvm mtools + run: sudo apt-get update && sudo apt-get install -y build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libcloog-isl-dev libisl-0.18-dev ccache curl nasm genisoimage qemu qemu-kvm mtools - name: Build run: sh run build - name: Test install @@ -19,6 +19,7 @@ * Install build dependencies (package names may vary depending on your operating system) * Ubuntu/Debian _"instructions"_ can be found here: [GitHub Workflow](https://raw.githubusercontent.com/marvinborner/Melvix/master/.github/workflows/build.yml) * binutils + * ccache * gcc * make * bison @@ -14,9 +14,9 @@ qemu_with_flags() { compile_with_flags() { if [ "${mode}" = "image" ] || [ "${mode}" = "image_debug" ]; then - i686-elf-gcc -std=gnu99 -ffreestanding -nostdlib -Wall -Wextra -Wno-unused-parameter -D INSTALL_MELVIX "$@" || exit + GCC_COLORS=1 ccache i686-elf-gcc -std=gnu99 -ffreestanding -nostdlib -Wall -Wextra -Wno-unused-parameter -D INSTALL_MELVIX "$@" || exit else - i686-elf-gcc -std=gnu99 -ffreestanding -nostdlib -Wall -Wextra -Wno-unused-parameter "$@" || exit + GCC_COLORS=1 ccache i686-elf-gcc -std=gnu99 -ffreestanding -nostdlib -Wall -Wextra -Wno-unused-parameter "$@" || exit fi } @@ -109,7 +109,7 @@ make_build() { compile_with_flags -O2 -c ./"${line}" -I ./src/userspace -o ./build/userspace/"${stripped}" done <./build/tmp rm ./build/tmp - compile_with_flags -Wl,--oformat=binary -emain -O2 ./build/userspace/*.o -I ./src/userspace -o ./build/user.bin + compile_with_flags -emain -O2 ./build/userspace/*.o -I ./src/userspace -o ./build/user.bin # Create ISO mkdir -p ./iso/boot/ |