36 lines · c
1// A basic clang -cc1 command-line, and simple environment check.2 3// The tests here are similar to those in arm-toolchain.c, however4// these tests need to create symlinks to test directory trees in order to5// set up the environment and therefore shell support 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/arm-nogcc/bin15// RUN: ln -s %clang %t/arm-nogcc/bin/clang16// RUN: ln -s %S/Inputs/basic_arm_nogcc_tree/armv6m-none-eabi %t/arm-nogcc/armv6m-none-eabi17// RUN: ln -s %S/Inputs/basic_arm_nogcc_tree/bin/armv6m-none-eabi-ld %t/arm-nogcc/bin/armv6m-none-eabi-ld18// RUN: %t/arm-nogcc/bin/clang %s -### -no-canonical-prefixes \19// RUN: --gcc-toolchain=%t/arm-nogcc/invalid \20// RUN: --target=armv6m-none-eabi --rtlib=libgcc --unwindlib=platform -fuse-ld=ld 2>&1 \21// RUN: | FileCheck -check-prefix=C-ARM-BAREMETAL-NOGCC %s22 23// RUN: %t/arm-nogcc/bin/clang %s -### -no-canonical-prefixes \24// RUN: --sysroot=%t/arm-nogcc/bin/../armv6m-none-eabi \25// RUN: --target=armv6m-none-eabi --rtlib=libgcc --unwindlib=platform -fuse-ld=ld 2>&1 \26// RUN: | FileCheck -check-prefix=C-ARM-BAREMETAL-NOGCC %s27 28// C-ARM-BAREMETAL-NOGCC: "-internal-isystem" "{{.*}}/arm-nogcc/bin/../armv6m-none-eabi/include"29// C-ARM-BAREMETAL-NOGCC: "{{.*}}/arm-nogcc/bin/armv6m-none-eabi-ld"30// C-ARM-BAREMETAL-NOGCC: "{{.*}}/arm-nogcc/bin/../armv6m-none-eabi/lib/crt0.o"31// C-ARM-BAREMETAL-NOGCC: "{{.*}}/arm-nogcc/{{.*}}/armv6m-none-eabi/lib/crtbegin.o"32// C-ARM-BAREMETAL-NOGCC: "{{.*}}/arm-nogcc/bin/../armv6m-none-eabi/lib"33// C-ARM-BAREMETAL-NOGCC: "{{.*}}.o" "--start-group" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "-lc" "-lgloss" "--end-group"34// C-ARM-BAREMETAL-NOGCC: "{{.*}}/arm-nogcc/{{.*}}/armv6m-none-eabi/lib/crtend.o"35 36