diff options
author | Marvin Borner | 2019-12-21 12:25:14 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-21 12:25:14 +0100 |
commit | 38610cd06dc0b5a3a4ee46f5fe7c341191aa2bc1 (patch) | |
tree | 759378766ee6b22d72a0f2fded1b0dd530376a6e /Makefile | |
parent | 07530dd08e0b29573712b54543a7fc42672bb34b (diff) |
Some userspace improvements
GAS is bad, NASM is awesome.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ build: clean i686-elf-gcc -c ./"$${line}" -o ./build/userspace/"$${stripped}" -I ./src/userspace -std=gnu99 -ffreestanding -O3 -Wall -Wextra -Wno-unused-parameter || exit; \ done <./build/tmp; \ rm ./build/tmp; \ - i686-elf-gcc -I ./src/userspace -o ./build/user.o -std=gnu99 -ffreestanding -O2 -nostdlib ./build/userspace/*.o|| exit; \ + i686-elf-gcc -I ./src/userspace -o ./build/user.o -std=gnu99 -ffreestanding -O2 -nostdlib ./build/userspace/*.o || exit; \ i686-elf-objcopy -O binary ./build/user.o ./build/user.bin; \ # Create ISO |