Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Define LLVM_NATIVE_ARCH in llvm/Config/config.h to be the LLVM back end that ↵ | Douglas Gregor | 2009-06-17 | 1 | -0/+16 | |
| | | | | | | corresponds to the native executable, but only when that LLVM back end is being built llvm-svn: 73590 | |||||
* | Add an atomic increment and decrement implementation, which will be used for | Owen Anderson | 2009-06-17 | 1 | -0/+2 | |
| | | | | | | thread-safe reference counting. llvm-svn: 73587 | |||||
* | Introduce new headers whose inclusion forces linking and | Douglas Gregor | 2009-06-16 | 1 | -0/+15 | |
| | | | | | | | | | 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 | |||||
* | Add a configure check for pthread_rwlock_init. | Owen Anderson | 2009-06-16 | 1 | -0/+3 | |
| | | | | llvm-svn: 73523 | |||||
* | Add a flag to permit disabling libffi. | Nick Lewycky | 2009-06-06 | 1 | -9/+23 | |
| | | | | | | | Also, there were a bunch of flags with no text in --help because the square brackets were in the wrong place. I've fixed those too. llvm-svn: 72989 | |||||
* | Split the ENABLE_THREADS #define in two. Now ENABLE_THREADS indicates the ↵ | Owen Anderson | 2009-05-19 | 1 | -17/+16 | |
| | | | | | | | | ability to run multiple threads at once in the JIT, and requires only mutex support. LLVM_MULTITHREADED indicates (or will indicate) the ability to run LLVM itself across multiple threads, and requires atomics support. llvm-svn: 72140 | |||||
* | Test for the presence of GCC atomic builtins at configure time. If not found, | Owen Anderson | 2009-05-18 | 1 | -1/+20 | |
| | | | | | | | | disable building LLVM in thread-safe mode and print a nice warning. Regenerate configure for these changes. llvm-svn: 72075 | |||||
* | termios.h contains the winsize structure we need to determine the | Douglas Gregor | 2009-05-18 | 1 | -2/+2 | |
| | | | | | | | width of a terminal. Don't try to get the width of a terminal if we don't have this header. llvm-svn: 72018 | |||||
* | Fix typo. | Duncan Sands | 2009-05-13 | 1 | -1/+1 | |
| | | | | llvm-svn: 71656 | |||||
* | Add terminal width detection to llvm::sys::Process. This is needed to | Douglas Gregor | 2009-05-11 | 1 | -1/+1 | |
| | | | | | | fix Clang PRs 4148 and 4183. llvm-svn: 71448 | |||||
* | Dummy MSP430 backend | Anton Korobeynikov | 2009-05-03 | 1 | -1/+5 | |
| | | | | llvm-svn: 70694 | |||||
* | Support --with-llvmgccdir and friends in llvmc, take 2. | Mikhail Glushenkov | 2009-04-21 | 1 | -0/+22 | |
| | | | | | | | | | Should now work when building with objdir != srcdir and when llvm-gcc is not available. Thanks to Duncan Sands for testing and advice! llvm-svn: 69700 | |||||
* | Revert 69474 and 69475. They are causing failures during a bootstrap on Darwin. | Bill Wendling | 2009-04-18 | 1 | -3/+0 | |
| | | | | llvm-svn: 69478 | |||||
* | Add a configure check for llvm-gcc (reapply). | Mikhail Glushenkov | 2009-04-18 | 1 | -0/+3 | |
| | | | | llvm-svn: 69474 | |||||
* | Generalize to support more ARM types. | Nick Lewycky | 2009-04-18 | 1 | -1/+1 | |
| | | | | | | | Configure was not actually regenerated, but the change last time only touched this one line, so I'm being lazy and cheating by fixing it manually. llvm-svn: 69453 | |||||
* | Detect beagleboard as ARM. The $target is "armv7l". | Nick Lewycky | 2009-04-18 | 1 | -1/+1 | |
| | | | | llvm-svn: 69446 | |||||
* | Temporarily revert r69438 and r69439. These were causing failures during a | Bill Wendling | 2009-04-18 | 1 | -3/+0 | |
| | | | | | | release build of llvm. llvm-svn: 69440 | |||||
* | Add a configure check for llvm-gcc. | Mikhail Glushenkov | 2009-04-18 | 1 | -0/+3 | |
| | | | | llvm-svn: 69438 | |||||
* | Add a --enable-profiling option to configure to build Debug+Profile and | David Greene | 2009-04-17 | 1 | -0/+9 | |
| | | | | | | Opt+Profile tools. Now we can profile any kind of flavor we build. llvm-svn: 69351 | |||||
* | Link against libffi if available, fall back to "no external calls from | Nick Lewycky | 2009-04-13 | 1 | -6/+5 | |
| | | | | | | interpreter mode" when it's not. llvm-svn: 68937 | |||||
* | Detect that we're building from a git checkout like we do for cvs and svn. | Nick Lewycky | 2009-04-01 | 1 | -7/+7 | |
| | | | | | | Based on a patch by Nicolas Trangez on the unladen-swallow mailing list! llvm-svn: 68187 | |||||
* | Revert r66765 and r66766. These were causing build failures on Darwin. | Bill Wendling | 2009-03-12 | 1 | -7/+0 | |
| | | | | llvm-svn: 66770 | |||||
* | Set ARCH to x86 on mixed 32/64-bit Linux systems. | Nick Lewycky | 2009-03-12 | 1 | -0/+7 | |
| | | | | | | Remove the explicit if OS = Darwin test around the setting of -m32/-m64. llvm-svn: 66765 | |||||
* | Remove configurey-fu to autodetect hash_map and hash_set now that they are | Nick Lewycky | 2009-03-09 | 1 | -4/+0 | |
| | | | | | | no longer used in LLVM. llvm-svn: 66406 | |||||
* | Autodetect the availability of -export-dynamic in the linker. | Nick Lewycky | 2009-03-05 | 1 | -6/+18 | |
| | | | | llvm-svn: 66156 | |||||
* | Switch to using -Wl,-R on Solaris. | Nick Lewycky | 2009-03-03 | 1 | -0/+7 | |
| | | | | llvm-svn: 65927 | |||||
* | Remove tests for flex/bison which are no longer needed by LLVM. | Nick Lewycky | 2009-02-21 | 1 | -2/+0 | |
| | | | | llvm-svn: 65249 | |||||
* | Default to building with position independent code. This may increase LLVM's | Nick Lewycky | 2009-02-19 | 1 | -3/+3 | |
| | | | | | | run time but will make LLVM easier to use as a library. llvm-svn: 65019 | |||||
* | Reapply patch from r62553, with a fix to avoid looking for an ffi.h that isn't | Nick Lewycky | 2009-02-04 | 1 | -3/+12 | |
| | | | | | | | | | | | | there. This changes the interpreter to use libffi. After this patch, the interpreter will barely be able to call any external functions if built on a system without libffi installed (just enough to pass 'make check' really). But with libffi, we can now call any function that isn't variadic or taking a struct or vector parameter (but pointer to struct is fine). Patch by Alexei Svitkine! llvm-svn: 63723 | |||||
* | Add the ability to pass the path to binutils source to configure. This is | Nick Lewycky | 2009-02-03 | 1 | -0/+18 | |
| | | | | | | needed to build the LLVM gold plugin. llvm-svn: 63621 | |||||
* | Revert r62553 and r62616 due to issues with portability. | Tanya Lattner | 2009-01-22 | 1 | -9/+0 | |
| | | | | llvm-svn: 62777 | |||||
* | Bump to 2.6svn. | Tanya Lattner | 2009-01-22 | 1 | -1/+1 | |
| | | | | | | Regenerate configure (last regen was with the wrong version). llvm-svn: 62751 | |||||
* | Make the Interpreter use libffi if it's available. Patch from Alexei Svitkine! | Nick Lewycky | 2009-01-20 | 1 | -0/+9 | |
| | | | | | | | | | | | This requires a rebuild of 'configure' itself. I will be committing that next, but built with the wrong version of autoconf. Somebody who has the right one, please update it. As a side-note, because of the way autoconf works, all built tools will link against libffi, not just lli. If you know how to fix this, please let me know ... llvm-svn: 62553 | |||||
* | Modify the unittests Makefiles so that they don't rebuild parts of LLVM just to | Bill Wendling | 2009-01-04 | 1 | -0/+1 | |
| | | | | | | run the tests. Most of this was stolen from the llvm/test Makefiles. llvm-svn: 61648 | |||||
* | Add XCore backend. | Richard Osborne | 2008-11-07 | 1 | -1/+5 | |
| | | | | llvm-svn: 58838 | |||||
* | [PR2886] Don't look for ocaml's .opt executables; something in the ↵ | Gordon Henriksen | 2008-10-22 | 1 | -4/+4 | |
| | | | | | | autoconf/test machinery doesn't handle the period properly. llvm-svn: 57974 | |||||
* | Fix make check on Solaris 10/x86: the default grep is not GNU grep, same for as. | Torok Edwin | 2008-10-21 | 1 | -0/+1 | |
| | | | | llvm-svn: 57912 | |||||
* | Fix configure issue where configure | Tanya Lattner | 2008-10-07 | 1 | -1/+1 | |
| | | | | | | | turned "obj-c++" into "obj" in the langs line. Update configure script. llvm-svn: 57267 | |||||
* | Advance version to 2.5 | Tanya Lattner | 2008-10-07 | 1 | -1/+1 | |
| | | | | llvm-svn: 57233 | |||||
* | Add support for Canadian Cross builds where the host executables are not | Jim Grosbach | 2008-10-02 | 1 | -0/+8 | |
| | | | | | | | | | | | | 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 | |||||
* | Reapply majority of r55557 but with the changes to compilation flags | Daniel Dunbar | 2008-09-02 | 1 | -0/+2 | |
| | | | | | | disabled until issues with gcc 4.1 on linux 32-bit are resolved. llvm-svn: 55636 | |||||
* | Revert r55557, it is causing linking failures on 32bit linux. | Matthijs Kooijman | 2008-09-02 | 1 | -2/+0 | |
| | | | | llvm-svn: 55628 | |||||
* | Enable -fvisibility-inlines-hidden by default for compilers which | Daniel Dunbar | 2008-08-30 | 1 | -0/+2 | |
| | | | | | | support it. llvm-svn: 55557 | |||||
* | Make LLVM compile on DragonFly BSD (PR2499). | Matthijs Kooijman | 2008-06-26 | 1 | -0/+5 | |
| | | | | | | Patch by Hasso Tepper! llvm-svn: 52781 | |||||
* | Allow the test suite to be checked out into projects/test-suite. | Matthijs Kooijman | 2008-06-24 | 1 | -0/+3 | |
| | | | | | | | | | We will keep the old projects/llvm-test working for existing installs. The changes to configure are made manually, since I lack autoconf-2.6. Someone might want to run AutoGen.sh to see if that changes anything. llvm-svn: 52675 | |||||
* | For PR1338: rename include/llvm/ADT/ilist and friends to end with ".h" | Anton Korobeynikov | 2008-05-29 | 1 | -3/+3 | |
| | | | | llvm-svn: 51687 | |||||
* | Added configure switches for PIC16 in configure.ac. | Sanjiv Gupta | 2008-05-14 | 1 | -1/+5 | |
| | | | | | | Regenerated configure. llvm-svn: 51096 | |||||
* | Set to 2.4 and regenerate configure. | Tanya Lattner | 2008-05-10 | 1 | -1/+1 | |
| | | | | llvm-svn: 50935 | |||||
* | First step of implementing PR1538: move llvm2cpp logic to new 'target' | Anton Korobeynikov | 2008-04-23 | 1 | -1/+2 | |
| | | | | llvm-svn: 50189 | |||||
* | Adding ocamldoc generation. | Gordon Henriksen | 2008-03-10 | 1 | -0/+1 | |
| | | | | | | Patch by Erick Tryzelaar. llvm-svn: 48147 |