35 lines · c
1// A basic clang -cc1 command-line, and simple environment check.2 3// The tests here are similar to those in aarch64-toolchain.c, however4// these tests need to create symlinks to test directory trees in order to5// set up the environment and therefore POSIX is required.6// UNSUPPORTED: system-windows7 8// If there is no GCC install detected then the driver searches for executables9// and runtime starting from the directory tree above the driver itself.10// The test below checks that the driver correctly finds the linker and11// runtime if and only if they exist.12//13// RUN: rm -rf %t14// RUN: mkdir -p %t/aarch64-nogcc/bin15// RUN: ln -s %clang %t/aarch64-nogcc/bin/clang16// RUN: ln -s %S/Inputs/basic_aarch64_nogcc_tree/aarch64-none-elf %t/aarch64-nogcc/aarch64-none-elf17// RUN: ln -s %S/Inputs/basic_aarch64_nogcc_tree/bin/aarch64-none-elf-ld %t/aarch64-nogcc/bin/aarch64-none-elf-ld18// RUN: %t/aarch64-nogcc/bin/clang %s -### -no-canonical-prefixes \19// RUN: --gcc-toolchain=%t/aarch64-nogcc/invalid \20// RUN: --target=aarch64-none-elf --rtlib=libgcc --unwindlib=platform -fuse-ld=ld 2>&1 \21// RUN: | FileCheck -check-prefix=C-AARCH64-BAREMETAL-NOGCC %s22 23// RUN: %t/aarch64-nogcc/bin/clang %s -### -no-canonical-prefixes \24// RUN: --sysroot=%t/aarch64-nogcc/bin/../aarch64-none-elf \25// RUN: --target=aarch64-none-elf --rtlib=libgcc --unwindlib=platform -fuse-ld=ld 2>&1 \26// RUN: | FileCheck -check-prefix=C-AARCH64-BAREMETAL-NOGCC %s27 28// C-AARCH64-BAREMETAL-NOGCC: "-internal-isystem" "{{.*}}/aarch64-nogcc/bin/../aarch64-none-elf/include"29// C-AARCH64-BAREMETAL-NOGCC: "{{.*}}/aarch64-nogcc/bin/aarch64-none-elf-ld"30// C-AARCH64-BAREMETAL-NOGCC: "{{.*}}/aarch64-nogcc/bin/../aarch64-none-elf/lib/crt0.o"31// C-AARCH64-BAREMETAL-NOGCC: "{{.*}}/aarch64-nogcc/{{.*}}/aarch64-none-elf/lib/crtbegin.o"32// C-AARCH64-BAREMETAL-NOGCC: "{{.*}}/aarch64-nogcc/bin/../aarch64-none-elf/lib"33// C-AARCH64-BAREMETAL-NOGCC: "{{.*}}.o" "--start-group" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "-lc" "-lgloss" "--end-group"34// C-AARCH64-BAREMETAL-NOGCC: "{{.*}}/aarch64-nogcc/{{.*}}/aarch64-none-elf/lib/crtend.o"35