- Oct 26, 2009
-
-
Chandler Carruth authored
llvm-svn: 85082
-
- Oct 22, 2009
-
-
Stuart Hastings authored
Now with Clang-compatibility. llvm-svn: 84872
-
- Oct 20, 2009
-
-
Daniel Dunbar authored
breaking Clang's Apple-style build. llvm-svn: 84592
-
- Oct 19, 2009
-
-
Stuart Hastings authored
llvm-svn: 84507
-
- Oct 09, 2009
-
-
Mikhail Glushenkov authored
Thanks to Chris for heads-up! llvm-svn: 83613
-
- Sep 26, 2009
-
-
Torok Edwin authored
too. llvm-svn: 82873
-
- Sep 14, 2009
-
-
Daniel Dunbar authored
- 'make unittests' still builds and tests. - 'make unitcheck' inside a unittest directory runs the tests in that directory. llvm-svn: 81725
-
- Sep 13, 2009
-
-
Daniel Dunbar authored
llvm-svn: 81692
-
Daniel Dunbar authored
- 'make unittests' still builds and tests. - 'make unitcheck' inside a unittest directory runs the tests in that directory. llvm-svn: 81687
-
- Sep 03, 2009
-
-
Shantonu Sen authored
--build=triple and other configure options are passed to the BuildTools/ sub-invocation more consistently llvm-svn: 80854
-
- Aug 27, 2009
-
-
Gabor Greif authored
llvm-svn: 80254
-
Bill Wendling authored
A include/llvm/ADT/iterator.cmake U autoconf/configure.ac --- Reverse-merging r80161 into '.': U cmake/config-ix.cmake --- Reverse-merging r80171 into '.': U Makefile --- Reverse-merging r80173 into '.': U configure U include/llvm/Config/config.h.in --- Reverse-merging r80180 into '.': A include/llvm/ADT/iterator.h.in Despite common miscomceptions, iterator.h is alive and well. It broke the build bots for several hours. And yet no one bothered to look at them. Gabor and Doug, please review your changes and make sure that they actually build before resubmitting them. llvm-svn: 80197
-
Gabor Greif authored
llvm-svn: 80171
-
- Aug 19, 2009
-
-
Daniel Dunbar authored
llvm-svn: 79465
-
- Jun 16, 2009
-
-
Douglas Gregor authored
initialization of all targets (InitializeAllTargets.h) or assembler printers (InitializeAllAsmPrinters.h). This is a step toward the elimination of relinked object files, so that we can build normal archives. llvm-svn: 73543
-
- May 08, 2009
-
-
Chris Lattner authored
patch by Mikael Lepistö! llvm-svn: 71226
-
- May 01, 2009
-
-
Mike Stump authored
llvm-svn: 70529
-
- Apr 24, 2009
-
-
Gabor Greif authored
Patch by Benjamin Kramer! llvm-svn: 69976
-
- Apr 07, 2009
-
-
Mike Stump authored
llvm-svn: 68544
-
- Mar 30, 2009
-
-
Mike Stump authored
llvm-svn: 68038
-
- Mar 27, 2009
-
-
Mike Stump authored
llvm-svn: 67791
-
- Mar 09, 2009
-
-
Nick Lewycky authored
no longer used in LLVM. llvm-svn: 66406
-
- Jan 19, 2009
-
-
Mike Stump authored
llvm-svn: 62522
-
- Jan 08, 2009
-
-
Misha Brukman authored
llvm-svn: 61904
-
- Jan 05, 2009
-
-
Bill Wendling authored
run the tests. Most of this was stolen from the llvm/test Makefiles. llvm-svn: 61648
-
- Jan 01, 2009
-
-
Misha Brukman authored
* Added the first LLVM unittest -- DenseMap. * Updated mkpatch utility to include llvm/unittests dir * Added top-level target "unittests" to run all unittests llvm-svn: 61541
-
- Nov 10, 2008
-
-
Anton Korobeynikov authored
Patch by Jim Grosbach! llvm-svn: 58981
-
- Oct 03, 2008
-
-
Jim Grosbach authored
runnable on the build machine. There are a few bits that need built for the build environment (TableGen). This patch builds those bits, and the associated libraries, for the build environment as well as the (usual) host environment. Thanks to Eric C. and Devang P. for pre-commit review. llvm-svn: 56975
-
- May 29, 2008
-
-
Anton Korobeynikov authored
llvm-svn: 51687
-
- Mar 21, 2008
-
-
Gabor Greif authored
llvm-svn: 48663
-
- Feb 28, 2008
-
-
Gabor Greif authored
llvm-svn: 47723
-
Gabor Greif authored
add an SVN-UPDATE-OPTIONS variable that controls the update behaviour. This allows to go to a common older revision of all svn directories: gmake update SVN-UPDATE-OPTIONS=-r47717 would rewind both llvm and clang to a common revision (if clang is checked out into the llvm tree). llvm-svn: 47717
-
Gabor Greif authored
two new convenience targets: - update: svn update toplevel and try hard to locate updatable subdirectories using cunning tricks - happiness: update then build and test so what one wants to do now is: nice gmake --jobs happiness Have fun! llvm-svn: 47716
-
Gabor Greif authored
to specify nice gmake --jobs all check and go to lunch, while a multiprocessor machine will build everything using spare resources and check the result thereafter. Since concurrency of make is not restricted in subdirectories, this should be a nearly optimal way to do it. Also teach the user about a configure switch. llvm-svn: 47715
-
- Dec 29, 2007
-
-
Chris Lattner authored
llvm-svn: 45416
-
- Dec 13, 2007
-
-
Nate Begeman authored
llvm-svn: 44979
-
- Sep 18, 2007
-
-
Gordon Henriksen authored
built atop the C language bindings, and user programs can link with them as such: # Bytecode ocamlc -cc g++ llvm.cma llvmbitwriter.cma -o example example.ml # Native ocamlopt -cc g++ llvm.cmxa llvmbitwriter.cmxa -o example.opt example.ml The vmcore.ml test exercises most/all of the APIs thus far bound. Unfortunately, they're not yet numerous enough to write hello world. But: $ cat example.ml (* example.ml *) open Llvm open Llvm_bitwriter let _ = let filename = Sys.argv.(1) in let m = create_module filename in let v = make_int_constant i32_type 42 false in let g = define_global "hello_world" v m in if not (write_bitcode_file m filename) then exit 1; dispose_module m; $ ocamlc -cc g++ llvm.cma llvm_bitwriter.cma -o example example.ml File "example.ml", line 11, characters 6-7: Warning Y: unused variable g. $ ./example example.bc $ llvm-dis < example.bc ; ModuleID = '<stdin>' @hello_world = global i32 42 ; <i32*> [#uses=0] The ocaml test cases provide effective tests for the C interfaces. llvm-svn: 42093
-
- Jul 12, 2007
-
-
David Greene authored
Get rid of annoying spaces. llvm-svn: 39766
-
- Jul 08, 2007
-
-
Reid Spencer authored
of llvm from that level. llvm-svn: 38423
-
- Apr 15, 2007
-
-
Reid Spencer authored
llvm-svn: 36050
-