aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver
AgeCommit message (Expand)Author
2011-06-04Identifiers with _CapitalLetter are reserved, so don't use them. Prefer theNick Lewycky
2011-06-03We were looking at /usr/lib only if the distro had multilib. This is bogus:Rafael Espindola
2011-06-03Add support for centos.Rafael Espindola
2011-06-0380-col cleanup.Eric Christopher
2011-06-03Untabify and fix whitespace.NAKAMURA Takumi
2011-06-02We already have support for using c++ headers from a custom location.Rafael Espindola
2011-06-02Add Debian wheezy/sid to ToolChains.cpp. Patch by Michael Wild. PR10064.Eli Friedman
2011-06-02Change how we link libprofile_rt.a. While at it, refactor the code a bit.Rafael Espindola
2011-06-02Add -fno-gnu89-inline.Rafael Espindola
2011-06-02Implement -fgnu89-inline. Fixes PR10041.Rafael Espindola
2011-06-01Add the necessary -L option for finding libprofile_rt.a. It might be a goodRafael Espindola
2011-05-31Driver/Clang: Simplify code to use arch enumerations.Daniel Dunbar
2011-05-25A StringRef-ication of the DiagnosticIDs API and internals.Argyrios Kyrtzidis
2011-05-24When given one of the applicable coverage flags, try to link againstNick Lewycky
2011-05-24Let amd64 be used in target triple instead of x86_64 on FreeBSD.Roman Divacky
2011-05-24For non-Darwin, a plain 'char' type is unsigned.Jim Grosbach
2011-05-24Fix a bug in the most recent openSUSE support patch.Chandler Carruth
2011-05-22add opensuse toolchain support, patch by Ismail Donmez!Chris Lattner
2011-05-22Add Redhat Enterprise Linux to the Linux toolchain, PR9769,Chris Lattner
2011-05-21Introduce the -fdiagnostics-format=xxx option to control how ClangDouglas Gregor
2011-05-19Correction for r131662, the GNU as option is --fatal-warnings.Joerg Sonnenberger
2011-05-19Support -fatal-warnings for the assembler frontendJoerg Sonnenberger
2011-05-19- Fixes openSUSE detection for 11.4 and upcoming 12.1David Chisnall
2011-05-17Add some support for RHEL5 systems.Eric Christopher
2011-05-17Fix comment.Rafael Espindola
2011-05-17The logic about -static is darwin only. For now assume that all nonRafael Espindola
2011-05-16Make the triple an explicit argument of FindTargetProgramPath.Joerg Sonnenberger
2011-05-09Driver/Darwin: Put dsymutil -o arguments first, so that dysmutil doesn't barfDaniel Dunbar
2011-05-06Move logic for passing down -mrelax-all / -relax-all into a commonJoerg Sonnenberger
2011-05-06Rename ContainsCompileAction to ContainsCompileOrAssembleAction toJoerg Sonnenberger
2011-05-05Preserve the full name of the file, so that '-c -o foo.pic.o' producesNick Lewycky
2011-05-04Record where the GCOV data files should be placed.Nick Lewycky
2011-05-04No, fix this use after free properly.Nick Lewycky
2011-05-04Fix use after free through StringRef.Nick Lewycky
2011-05-02Add the -mstackrealign option which just communicates the need toEric Christopher
2011-05-02Driver/Darwin: Honor --sysroot= when invoking the linker, on Darwin.Daniel Dunbar
2011-05-02Disable CFI if not using the integrated assembler. We should probably do this...Rafael Espindola
2011-04-30Implement -fno-dwarf2-cfi-asm.Rafael Espindola
2011-04-30Driver/Darwin: Don't link -lgcc_s.1 when compiling as iOS for the simulator,Daniel Dunbar
2011-04-30Driver/Darwin: When using -mios-simulator-version-min, explicitly pass this onDaniel Dunbar
2011-04-30Driver/Darwin: Reject invalid arch combinations withDaniel Dunbar
2011-04-30Driver/Darwin: Change Darwin toolchain to explicitly track is-ios-sim bit, andDaniel Dunbar
2011-04-30Driver/Darwin: Sketch initial support for a -mios-simulator-version-min= flagDaniel Dunbar
2011-04-29Add -Oz option and use it to set the inline threshold to 25.Bob Wilson
2011-04-29Driver/cc1as: Forward -mllvm arguments when compiling assembly files.Daniel Dunbar
2011-04-28Driver/Darwin/ld: Set the deployment target following the version information inDaniel Dunbar
2011-04-28Make the top-level driver ignore -fobjc-default-synthesize-properties while t...Ted Kremenek
2011-04-25Driver: When compilation fails, don't try to remove output files we don't haveDaniel Dunbar
2011-04-25Let clang detect gcc triple on Ubuntu Natty. Patch by Thomas Jablin.Nico Weber
2011-04-23Move all of the logic for __DEPRECATED to the driver based on commentsChandler Carruth