aurix/Brewfile
2025-01-25 21:46:13 +01:00

35 lines
647 B
Ruby

####
# COMMON PACKAGES
##
# These packages are required for building and running AurixOS
# regardless of the target architecture.
###
brew "git"
brew "make"
brew "gptfdisk"
brew "xorriso"
brew "qemu"
brew "util-linux" if OS.mac?
brew "gsed" if OS.mac?
####
# x86_64-SPECIFIC PACKAGES
##
# These packages are required for building and running AurixOS
# ONLY for the x86_64 architecture.
###
brew "x86_64-elf-binutils"
brew "x86_64-elf-gcc"
brew "nasm"
####
# aarch64-SPECIFIC PACKAGES
##
# These packages are required for building and running AurixOS
# ONLY for the aarch64 architecture.
###
brew "aarch64-elf-binutils"
brew "aarch64-elf-gcc"