如何使用LLVM为不同的目标架构编译程序?

时间:2013-06-27 20:51:03

标签: c++ c compiler-construction clang llvm

我想使用LLVM / Clang将基本程序hello.c编译为本机x86架构,以生成中间件和程序集。 我使用了以下命令:

clang -O3 -emit-llvm hello.c -c -o hello.bc
llc hello.bc -o hello.s

完美无缺。如何生成其他架构的代码说SPARC 32位? clang中是否有用于指定架构的标志?

2 个答案:

答案 0 :(得分:6)

您可以运行llc --version以获取支持的目标列表。从我的机器:

$ llc --version
LLVM (http://llvm.org/):
  LLVM version 3.2svn
  Optimized build with assertions.
  Built Aug 30 2012 (23:29:11).
  Default target: mipsel-sde-elf
  Host CPU: corei7-avx

  Registered Targets:
    arm      - ARM
    cellspu  - STI CBEA Cell SPU [experimental]
    cpp      - C++ backend
    hexagon  - Hexagon
    mblaze   - MBlaze
    mips     - Mips
    mips64   - Mips64 [experimental]
    mips64el - Mips64el [experimental]
    mipsel   - Mipsel
    msp430   - MSP430 [experimental]
    nvptx    - NVIDIA PTX 32-bit
    nvptx64  - NVIDIA PTX 64-bit
    ppc32    - PowerPC 32
    ppc64    - PowerPC 64
    sparc    - Sparc
    sparcv9  - Sparc V9
    thumb    - Thumb
    x86      - 32-bit X86: Pentium-Pro and above
    x86-64   - 64-bit X86: EM64T and AMD64
    xcore    - XCore

在您的情况下,您可能需要llc -march=sparc

答案 1 :(得分:0)

您可以使用指定的某些目标构建clang / llvm。默认情况下,如果没有指定LLVM_TARGETS_TO_BUILD,它将构建所有目标,如下所示https://github.com/llvm-mirror/llvm/blob/master/CMakeLists.txt#L269