llvm-sys 110.0.4

Bindings to LLVM's C API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
image: rust:buster

variables:
  LLVM_SYS_110_FFI_WORKAROUND: "YES"

before_script:
  - apt-get update -qq && apt-get install -qq -y lsb-release software-properties-common
  - bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"

test:
  script:
    - cargo build
    - cargo test
    - cargo run --example nop-function
    - cargo run --example jit-function
    - echo "Hello, world!" | cargo run --example disassembler