diff options
Diffstat (limited to 'util/crossgcc/Makefile')
-rw-r--r-- | util/crossgcc/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index 14ca1ecf7e..bd7fa2f777 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -6,6 +6,9 @@ build-i386: build-armv7a: bash ./buildgcc -G -p armv7a-eabi +build-aarch64: + bash ./buildgcc -G -p aarch64-elf + .PHONY: build-i386-without-gdb build-i386-without-gdb: bash ./buildgcc -p i386-elf @@ -14,6 +17,10 @@ build-i386-without-gdb: build-armv7a-without-gdb: bash ./buildgcc -p armv7a-eabi +.PHONY: build-aarch64-without-gdb +build-aarch64-without-gdb: + bash ./buildgcc -p aarch64-elf + clean: rm -rf xgcc |