Skip to content
  1. Jun 17, 2010
  2. Jun 16, 2010
  3. Jun 15, 2010
  4. Jun 14, 2010
  5. Jun 12, 2010
  6. Jun 11, 2010
  7. Jun 10, 2010
  8. Jun 09, 2010
  9. Jun 08, 2010
    • Daniel Dunbar's avatar
      Makefiles: Set Clang CPP compiler flags in a single location, instead of... · ee6b6925
      Daniel Dunbar authored
      Makefiles: Set Clang CPP compiler flags in a single location, instead of scattered throughout the project Makefiles.
      
      llvm-svn: 105638
      ee6b6925
    • Daniel Dunbar's avatar
      Makefile: Switch Clang Makefiles to always include the top-level Clang Makefile. · e6c1daa8
      Daniel Dunbar authored
       - This eliminates most dependencies on how Clang is installed relative to LLVM.
      
      llvm-svn: 105637
      e6c1daa8
    • Jeffrey Yasskin's avatar
      Implement -fcaret-diagnostics to undo -fno-caret-diagnostics. · 460aa54d
      Jeffrey Yasskin authored
      llvm-svn: 105597
      460aa54d
    • Daniel Dunbar's avatar
      Driver: Support invoking Clang on .ll or .bc inputs. · 24e52992
      Daniel Dunbar authored
       - We actually pretend that we have two separate types for LLVM assembly/bitcode because we need to use the standard suffixes with LTO ('clang -O4 -c t.c' should generate 't.o').
      
      It is now possible to do something like:
        $ clang -emit-llvm -S t.c -o t.ll ... assorted other compile flags ...
        $ clang -c t.ll -o t.o ... assorted other compile flags ...
      and expect that the output will be almost* identical to:
        $ clang -c t.c -o t.o ... assorted other compile flags ...
      because all the target settings (default CPU, target features, etc.) will all be initialized properly by the driver/frontend.
      
      *: This isn't perfect yet, because in practice we will end up running the optimization passes twice. It's possible to get something equivalent out with a well placed -mllvm -disable-llvm-optzns, but I'm still thinking about the cleanest way to solve this problem more generally.
      
      llvm-svn: 105584
      24e52992
  10. Jun 04, 2010
  11. May 28, 2010
  12. May 27, 2010
  13. May 22, 2010
Loading