Hi all,

Some regression tests for the driver rely on the minimal/dummy system root
that comes in the Inputs folder included in the clang driver tests’s
folder. The path to the right toolchain is specified using the —sysroot
switch. However, if clang was configured with a custom gcc toolchain
(either by using GCC_INSTALL_PREFIX in cmake or the equivalent configure
command), the path to the custom gcc toolchain path takes precedence to the
one specified by sysroot. This causes several regression tests to fail as
they will be using an unexpected path.

This patch fixes this issue by adding --gcc-toolchain=“” to all tests that
rely on that. The empty string causes the driver to pick the path from
sysroot instead. There aren’t any changes in the driver’s code, only the
tests are modified. The driver's regression tests for hexagon also have
similar issues but these require modifications in the driver’s code. I’ll
send these fixes in a separate patch.

The modified files are the following:
test/Driver/constructors.c

test/Driver/gcc-version-debug.c

test/Driver/linux-header-search.cpp

test/Driver/linux-ld.c

test/Driver/mips-reduced-toolchain.cpp



Thanks,

Sam

(See attached file: clang_gcc_toolchain_gen_and_mips_fix.patch)

Attachment: clang_gcc_toolchain_gen_and_mips_fix.patch
Description: Binary data

_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to