使用毕昇编译器
编译运行C/C++程序
clang [command line flags] hello.c -o hello.o ./hello.o
clang++ [command line flags] hello.cpp -o hello.o ./hello.o
编译运行Fortran程序
flang [command line flags] hello.f90 -o hello.o ./hello.o
指定链接器
毕昇编译器指定的链接器是LLVM的lld,若不指定它则使用默认的ld。
clang [command line flags] -fuse-ld=lld hello.c -o hello.o ./hello.o
父主题: 毕昇编译器安装使用