HUAWEI CLOUD EULEROS-毕昇编译器:使用毕昇编译器

时间:2024-09-14 11:44:00

使用毕昇编译器

  1. 编译运行C/C++程序。
    clang [command line flags] hello.c -o hello.o
    ./hello.o
    clang++ [command line flags] hello.cpp -o hello.o
    ./hello.o
  2. 编译运行Fortran程序。
    flang [command line flags] hello.f90 -o hello.o
    ./hello.o
  3. 指定链接器。

    毕昇编译器指定的链接器是LLVM的lld,若不指定它则使用默认的ld。

    clang [command line flags] -fuse-ld=lld hello.c -o hello.o
    ./hello.o
support.huaweicloud.com/usermanual-hce/hce_02_0051.html