mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-04 00:06:50 +00:00
4b94a3064a
Summary: This implements the gcc builder in build.py script to allow it to compile host executables when running on a non-windows host. Where it made sense, I tried to share code with the msvc builder by moving stuff to the base class. Reviewers: zturner Subscribers: mehdi_amini, dexonsmith, lldb-commits Differential Revision: https://reviews.llvm.org/D55430 llvm-svn: 348918
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
RUN: %build -n --verbose --arch=32 --mode=compile --compiler=any -o %t/foo.out foobar.c \
|
|
RUN: | FileCheck %s
|
|
RUN: %build -n --verbose --arch=32 --mode=compile --compiler=any --outdir %t foo.c bar.c \
|
|
RUN: | FileCheck --check-prefix=MULTI-INPUT %s
|
|
|
|
|
|
CHECK: Script Arguments:
|
|
CHECK-NEXT: Arch: 32
|
|
CHECK: Compiler: any
|
|
CHECK: Outdir: {{.*}}script-args.test.tmp
|
|
CHECK: Output: {{.*}}script-args.test.tmp{{.}}foo.out
|
|
CHECK: Nodefaultlib: False
|
|
CHECK: Opt: none
|
|
CHECK: Mode: compile
|
|
CHECK: Clean: True
|
|
CHECK: Verbose: True
|
|
CHECK: Dryrun: True
|
|
CHECK: Inputs: foobar.c
|
|
|
|
MULTI-INPUT: Script Arguments:
|
|
MULTI-INPUT-NEXT: Arch: 32
|
|
MULTI-INPUT-NEXT: Compiler: any
|
|
MULTI-INPUT-NEXT: Outdir: {{.*}}script-args.test.tmp
|
|
MULTI-INPUT-NEXT: Output:
|
|
MULTI-INPUT-NEXT: Nodefaultlib: False
|
|
MULTI-INPUT-NEXT: Opt: none
|
|
MULTI-INPUT-NEXT: Mode: compile
|
|
MULTI-INPUT-NEXT: Clean: True
|
|
MULTI-INPUT-NEXT: Verbose: True
|
|
MULTI-INPUT-NEXT: Dryrun: True
|
|
MULTI-INPUT-NEXT: Inputs: foo.c
|
|
MULTI-INPUT-NEXT: bar.c
|