summaryrefslogtreecommitdiffstats
path: root/llvm/autoconf
Commit message (Collapse)AuthorAgeFilesLines
...
* 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-122-24/+0
| | | | llvm-svn: 66770
* Set ARCH to x86 on mixed 32/64-bit Linux systems.Nick Lewycky2009-03-122-0/+24
| | | | | | 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-093-123/+0
| | | | | | no longer used in LLVM. llvm-svn: 66406
* Autodetect the availability of -export-dynamic in the linker.Nick Lewycky2009-03-053-25/+59
| | | | llvm-svn: 66156
* Switch to using -Wl,-R on Solaris.Nick Lewycky2009-03-031-0/+7
| | | | llvm-svn: 65927
* Search for the export map in a place that it can be found.Chris Lattner2009-02-261-0/+4
| | | | llvm-svn: 65552
* 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
* Revert accidental last patchScott Michel2008-11-201-2/+2
| | | | llvm-svn: 59704
* CellSPU: Adjust spacing/tabulationScott Michel2008-11-201-2/+2
| | | | llvm-svn: 59703
* 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
* When looking for executable extensions, ignore .dSYM, as that's the debug ↵Jim Grosbach2008-09-261-1/+1
| | | | | | info directory on Darwin. llvm-svn: 56667
* Reapply majority of r55557 but with the changes to compilation flagsDaniel Dunbar2008-09-022-0/+24
| | | | | | 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-022-24/+0
| | | | llvm-svn: 55628
* Enable -fvisibility-inlines-hidden by default for compilers whichDaniel Dunbar2008-08-302-0/+24
| | | | | | support it. llvm-svn: 55557
* Set the executable bit - means it can actuallyDuncan Sands2008-07-291-0/+0
| | | | | | | be run when installing on sparc sun. Set the mime type to text/x-sh while there. llvm-svn: 54165
* 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
* Prefer to use ocamlc.opt to ocamlc and soforth.Gordon Henriksen2008-03-071-3/+3
| | | | | | | | These natively compiled versions are faster. Patch by Erick Tryzelaar! llvm-svn: 48007
* Use AC_PATH_PROG correctly:Bill Wendling2008-03-051-11/+11
| | | | | | http://www.gnu.org/software/autoconf/manual/autoconf.html#Generic-Programs llvm-svn: 47943
* Remove use of ltdlDevang Patel2008-02-131-6/+0
| | | | llvm-svn: 47065
* Make the check for GCC version more robust, fix shared libraryChris Lattner2008-02-051-6/+5
| | | | | | | | | | dependencies in makefile, and fix llvm_cv_no_link_all_option on darwin. Patch by Shantonu Sen, more info here: http://lists.cs.uiuc.edu/pipermail/llvmdev/2008-February/012410.html llvm-svn: 46760
* Update version to 2.3svnTanya Lattner2008-01-171-3/+3
| | | | | | Regenerate configure with 2.60. llvm-svn: 46119
* remove attribution from a variety of miscellaneous files.Chris Lattner2007-12-291-2/+2
| | | | llvm-svn: 45425
* Apply CBE/MSIL patch to autoconfNate Begeman2007-12-131-2/+3
| | | | llvm-svn: 44980
OpenPOWER on IntegriCloud