i686-elf-gcc

GNU compiler collection targeting i686-elf bare-metal systems

brewmacoslinux
Try with needOr install directly
Source

About

GNU compiler collection for i686-elf

Commands

i686-elf-gcci686-elf-g++i686-elf-ari686-elf-ldi686-elf-objcopyi686-elf-objdump

Examples

Compile a C source file to an ELF object file$ i686-elf-gcc -c kernel.c -o kernel.o
Link object files into an executable with custom linker script$ i686-elf-gcc -T linker.ld kernel.o boot.o -o kernel.elf
Convert ELF binary to raw binary format for bootloader$ i686-elf-objcopy -O binary kernel.elf kernel.bin