summaryrefslogtreecommitdiffstats
path: root/llvm/autoconf/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
...
* Define LLVM_NATIVE_ARCH in llvm/Config/config.h to be the LLVM back end that ↵Douglas Gregor2009-06-171-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 forOwen Anderson2009-06-171-0/+2
| | | | | | thread-safe reference counting. llvm-svn: 73587
* Introduce new headers whose inclusion forces linking andDouglas Gregor2009-06-161-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 Anderson2009-06-161-0/+3
| | | | llvm-svn: 73523
* Add a flag to permit disabling libffi.Nick Lewycky2009-06-061-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 Anderson2009-05-191-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 Anderson2009-05-181-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 theDouglas Gregor2009-05-181-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 Sands2009-05-131-1/+1
| | | | llvm-svn: 71656
* Add terminal width detection to llvm::sys::Process. This is needed toDouglas Gregor2009-05-111-1/+1
| | | | | | fix Clang PRs 4148 and 4183. llvm-svn: 71448
* Dummy MSP430 backendAnton Korobeynikov2009-05-031-1/+5
| | | | llvm-svn: 70694
* Support --with-llvmgccdir and friends in llvmc, take 2.Mikhail Glushenkov2009-04-211-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 Wendling2009-04-181-3/+0
| | | | llvm-svn: 69478
* Add a configure check for llvm-gcc (reapply).Mikhail Glushenkov2009-04-181-0/+3
| | | | llvm-svn: 69474
* Generalize to support more ARM types.Nick Lewycky2009-04-181-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 Lewycky2009-04-181-1/+1
| | | | llvm-svn: 69446
* Temporarily revert r69438 and r69439. These were causing failures during aBill Wendling2009-04-181-3/+0
| | | | | | release build of llvm. llvm-svn: 69440
* Add a configure check for llvm-gcc.Mikhail Glushenkov2009-04-181-0/+3
| | | | llvm-svn: 69438
* Add a --enable-profiling option to configure to build Debug+Profile andDavid Greene2009-04-171-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 fromNick Lewycky2009-04-131-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 Lewycky2009-04-011-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 Wendling2009-03-121-7/+0
| | | | llvm-svn: 66770
* Set ARCH to x86 on mixed 32/64-bit Linux systems.Nick Lewycky2009-03-121-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 areNick Lewycky2009-03-091-4/+0
| | | | | | no longer used in LLVM. llvm-svn: 66406
* Autodetect the availability of -export-dynamic in the linker.Nick Lewycky2009-03-051-6/+18
| | | | llvm-svn: 66156
* Switch to using -Wl,-R on Solaris.Nick Lewycky2009-03-031-0/+7
| | | | llvm-svn: 65927
* Remove tests for flex/bison which are no longer needed by LLVM.Nick Lewycky2009-02-211-2/+0
| | | | llvm-svn: 65249
* Default to building with position independent code. This may increase LLVM'sNick Lewycky2009-02-191-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'tNick Lewycky2009-02-041-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 isNick Lewycky2009-02-031-0/+18
| | | | | | needed to build the LLVM gold plugin. llvm-svn: 63621
* Revert r62553 and r62616 due to issues with portability.Tanya Lattner2009-01-221-9/+0
| | | | llvm-svn: 62777
* Bump to 2.6svn.Tanya Lattner2009-01-221-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 Lewycky2009-01-201-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 toBill Wendling2009-01-041-0/+1
| | | | | | run the tests. Most of this was stolen from the llvm/test Makefiles. llvm-svn: 61648
* Add XCore backend.Richard Osborne2008-11-071-1/+5
| | | | llvm-svn: 58838
* [PR2886] Don't look for ocaml's .opt executables; something in the ↵Gordon Henriksen2008-10-221-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 Edwin2008-10-211-0/+1
| | | | llvm-svn: 57912
* Fix configure issue where configureTanya Lattner2008-10-071-1/+1
| | | | | | | turned "obj-c++" into "obj" in the langs line. Update configure script. llvm-svn: 57267
* Advance version to 2.5Tanya Lattner2008-10-071-1/+1
| | | | llvm-svn: 57233
* Add support for Canadian Cross builds where the host executables are notJim Grosbach2008-10-021-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 flagsDaniel Dunbar2008-09-021-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 Kooijman2008-09-021-2/+0
| | | | llvm-svn: 55628
* Enable -fvisibility-inlines-hidden by default for compilers whichDaniel Dunbar2008-08-301-0/+2
| | | | | | support it. llvm-svn: 55557
* Make LLVM compile on DragonFly BSD (PR2499).Matthijs Kooijman2008-06-261-0/+5
| | | | | | Patch by Hasso Tepper! llvm-svn: 52781
* Allow the test suite to be checked out into projects/test-suite.Matthijs Kooijman2008-06-241-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 Korobeynikov2008-05-291-3/+3
| | | | llvm-svn: 51687
* Added configure switches for PIC16 in configure.ac.Sanjiv Gupta2008-05-141-1/+5
| | | | | | Regenerated configure. llvm-svn: 51096
* Set to 2.4 and regenerate configure.Tanya Lattner2008-05-101-1/+1
| | | | llvm-svn: 50935
* First step of implementing PR1538: move llvm2cpp logic to new 'target'Anton Korobeynikov2008-04-231-1/+2
| | | | llvm-svn: 50189
* Adding ocamldoc generation.Gordon Henriksen2008-03-101-0/+1
| | | | | | Patch by Erick Tryzelaar. llvm-svn: 48147
OpenPOWER on IntegriCloud