Re-land "[Driver] Support default libc++ library location on Darwin"
authorJonas Devlieghere <jonas@devlieghere.com>
Wed, 21 Apr 2021 20:59:54 +0000 (13:59 -0700)
committerJonas Devlieghere <jonas@devlieghere.com>
Wed, 21 Apr 2021 21:22:13 +0000 (14:22 -0700)
commit6331680ad2ad000fdaf7e72f3c1880c7908ffa25
treed0f8102ee21e74fb0ddb9f38880288723e288933
parent5a2d78b1639738fbde85248413c1cfd2df55683a
Re-land "[Driver] Support default libc++ library location on Darwin"

This reverts commit 05eeed9691aeb3e0316712195b998e9078cdceb0 and after
fixing the impacted lldb tests in 5d1c43f333c2327be61604dc90ea675f0d1e6913.

  [Driver] Support default libc++ library location on Darwin

  Darwin driver currently uses libc++ headers that are part of Clang
  toolchain when available (by default ../include/c++/v1 relative to
  executable), but it completely ignores the libc++ library itself
  because it doesn't pass the location of libc++ library that's part
  of Clang (by default ../lib relative to the exceutable) to the linker
  always using the system copy of libc++.

  This may lead to subtle issues when the compilation fails because the
  headers that are part of Clang toolchain are incompatible with the
  system library. Either the driver should ignore both headers as well as
  the library, or it should always try to use both when available.

  This patch changes the driver behavior to do the latter which seems more
  reasonable, it makes it easy to test and use custom libc++ build on
  Darwin while still allowing the use of system version. This also matches
  the Clang driver behavior on other systems.

  Differential Revision: https://reviews.llvm.org/D45639
clang/lib/Driver/ToolChains/Darwin.cpp
clang/test/Driver/darwin-ld.c