What is the ARM64 assembly compiler on FreeBSD?

To see the syscalls with parameters check out sys/kern/syscalls.master. For brief list you can also check sys/sys/syscall.h, file which is automatically generated. sysdecode(3) could help too.
I don't use FreeBSD on this architecture much but you do have option of packages llvm or binutils to get as. There's native linker in the base, /usr/bin/ld.

There's arm wiki that shows how to setup tools. Among cross-piling tools there are also a native ones. So one could download sources and compile tools from there. Or use packages.

Sidenote: binutils package also includes objdump; you can use llvm-objdump though.
 
Back
Top