Skip to content
  1. Oct 03, 2011
    • Chandler Carruth's avatar
      Rework the selection of builtin library search paths on Linux to · 413e5ac2
      Chandler Carruth authored
      precisely match the pattern and logic used by the GCC driver on Linux as
      of a recent SVN checkout.
      
      This happens to follow a *much* more principled approach. There is
      a strict hierarchy of paths examined, first with multilib-suffixing,
      second without such suffixing. Any and all of these directories which
      exist will be added to the library search path when using GCC.
      
      There were many places where Clang followed different paths, omitted
      critical entries, and worst of all (in terms of challenges to debugging)
      got the entries in a subtly wrong order.
      
      If this breaks Clang on a distro you use, please let me know, and I'll
      work with you to figure out what is needed to work on that distro. I've
      checked the behavior of the latest release of Ubuntu, OpenSUSE, Fedora,
      and Gentoo. I'll be testing it on those as well as Debian stable and
      unstable and ArchLinux. I may even dig out a Slackware install.
      
      No real regression tests yet, those will follow once I add enough
      support for sysroot to simulate various distro layouts in the testsuite.
      
      llvm-svn: 140981
      413e5ac2
  2. Oct 02, 2011
    • John McCall's avatar
      Make -fobjc-nonfragile-abi the -cc1 default, since it's the · 9b0a7cea
      John McCall authored
      increasingly prevailing case to the point that new features
      like ARC don't even support the fragile ABI anymore.
      
      This required a little bit of reshuffling with exceptions
      because a check was assuming that ObjCNonFragileABI was
      only being set in ObjC mode, and that's actually a bit
      obnoxious to do.
      
      Most, though, it involved a perl script to translate a ton
      of test cases.
      
      Mostly no functionality change for driver users, although
      there are corner cases with disabling language-specific
      exceptions that we should handle more correctly now.
      
      llvm-svn: 140957
      9b0a7cea
  3. Oct 01, 2011
  4. Sep 30, 2011
  5. Sep 29, 2011
  6. Sep 23, 2011
  7. Sep 22, 2011
    • Benjamin Kramer's avatar
      Add support for CPATH and friends. · 8404eb0b
      Benjamin Kramer authored
      This moves the existing code for CPATH into the driver and adds the environment lookup and path splitting there.
      The paths are then passed down to cc1 with -I options (CPATH), added after the normal user-specified include dirs.
      Language specific paths are passed via -LANG-isystem and the actual filtering is performed in the frontend.
      
      I tried to match GCC's behavior as close as possible
      
      Fixes PR8971.
      
      llvm-svn: 140341
      8404eb0b
  8. Sep 08, 2011
  9. Sep 05, 2011
  10. Aug 31, 2011
  11. Aug 30, 2011
  12. Aug 26, 2011
  13. Aug 25, 2011
  14. Aug 24, 2011
  15. Aug 23, 2011
  16. Aug 18, 2011
  17. Aug 17, 2011
  18. Aug 14, 2011
  19. Jul 28, 2011
  20. Jul 20, 2011
  21. Jul 12, 2011
  22. Jul 11, 2011
  23. Jul 06, 2011
  24. Jul 02, 2011
    • Eli Friedman's avatar
      Make clang behave in a gcc-compatible way in the presence of multiple flags... · ad811f01
      Eli Friedman authored
      Make clang behave in a gcc-compatible way in the presence of multiple flags for the same x86 target feature (e.g. -mno-sse -msse).  gcc uses a somewhat unintuitive algorithm here in that the enabled SSE instructions is based on the order of the *last* flag for *each* feature-level, so that "-mno-sse -msse2" only enables SSE2, but "-mno-sse -msse2 -msse" enables all SSE levels.
      
      Issue reported on cfe-dev.
      
      llvm-svn: 134296
      ad811f01
Loading