summaryrefslogtreecommitdiffstats
path: root/llvm/configure
Commit message (Collapse)AuthorAgeFilesLines
...
* Touch configure so it regenerates Disassemblers.def to include ARM soJeffrey Yasskin2010-04-081-1/+1
| | | | | | people stop seeing a broken build in EDDisassembler.cpp llvm-svn: 100782
* Fixed spurious warning problem noticed by Daniel Dunbar. The configure scriptJohn Criswell2010-03-251-1/+6
| | | | | | | now configures prerequisite projects individually but also ignores them in the big project switch statement to avoid the incorrect warning. llvm-svn: 99506
* Force configuration of some projects before others. In particular, someJohn Criswell2010-03-191-19/+34
| | | | | | | | projects rely upon llvm-gcc, the LLVM test suite, and poolalloc. This ensures that the aforementioned projects have their object trees created first so that other projects can find their object trees when they themselves are configured. llvm-svn: 98998
* Regenerate configure.Tanya Lattner2010-03-191-9/+9
| | | | llvm-svn: 98990
* Updated copyright year to 2010.John Criswell2010-03-191-3/+3
| | | | llvm-svn: 98985
* Tell Valgrind when we modify already-executed machine code so it knowsJeffrey Yasskin2010-03-151-0/+169
| | | | | | | to re-instrument the code. We depend on the system valgrind.h to avoid adding a new license. llvm-svn: 98529
* Move the docsdir to /usr/share/doc/llvm to match other projects.Eric Christopher2010-03-021-1/+1
| | | | | | Fixes PR6267. llvm-svn: 97549
* Make sure we save CXXFLAGS before setting it as pedantic and regenerateEric Christopher2010-03-021-0/+2
| | | | | | | | | | configure. Fixes PR6388. Patch by Yann Droneaud! llvm-svn: 97548
* Added SAFECode (safecode) to the list of projects to automatically configure.John Criswell2010-02-251-1/+4
| | | | llvm-svn: 97179
* Try r96559 for the third time. This time the shared library is only built ifJeffrey Yasskin2010-02-251-4/+32
| | | | | | --enable-shared is passed to configure. llvm-svn: 97119
* Roll back r96959 again.Jeffrey Yasskin2010-02-231-30/+3
| | | | llvm-svn: 96981
* Adding the MicroBlaze backend.Wesley Peck2010-02-231-1/+6
| | | | | | | | | | | | The MicroBlaze is a highly configurable 32-bit soft-microprocessor for use on Xilinx FPGAs. For more information see: http://www.xilinx.com/tools/microblaze.htm http://en.wikipedia.org/wiki/MicroBlaze The current LLVM MicroBlaze backend generates assembly which can be compiled using the an appropriate binutils assembler. llvm-svn: 96969
* Roll r96559 forward again, adding libLLVM-2.7svn.so to LLVM. This links 3 ofJeffrey Yasskin2010-02-231-3/+30
| | | | | | the examples shared to make sure the shared library keeps working. llvm-svn: 96959
* Initial configure support for using Clang as the LLVM capable compiler.Daniel Dunbar2010-02-231-5/+112
| | | | | | | | | | | | | | | | | | | Comes in two parts: 1. Use --with-clang=path/to/clang/compiler to select an installed clang, or --with-built-clang to have the makefiles use the clang which will be built as the LLVM capable compiler. If neither is given, --with-built-clang will be used if the Clang sources are checked out into the standard location (tools/clang). 2. Use --with-llvmcc={llvm-gcc,clang,none} to specify which LLVM capable compiler to use. If not given, then llvm-gcc will be used if available, otherwise Clang. Makefile support still to come. Eric, Doug, Chris, seem reasonable? llvm-svn: 96934
* Kill off unused LLVMGCCLIBEXEC make variable.Daniel Dunbar2010-02-231-7/+2
| | | | llvm-svn: 96910
* Kill off LLVMGCCARCH and LLVMGCC_VERSION make variables.Daniel Dunbar2010-02-231-8/+2
| | | | llvm-svn: 96909
* Kill off LLVMGCC_MAJVERS make variable.Daniel Dunbar2010-02-231-6/+2
| | | | llvm-svn: 96907
* Roll back the shared library, r96559. It broke two darwins and arm, ↵Jeffrey Yasskin2010-02-181-30/+3
| | | | | | mysteriously. llvm-svn: 96569
* Add a shared library for LLVM, named libLLVM2.7svn.(so|dylib), and add anJeffrey Yasskin2010-02-181-3/+30
| | | | | | | | | | | | | | | | | | | | --enable-shared configure flag to have the tools linked shared. (2.7svn is just $(LLVMVersion) so it'll change to "2.7" in the release.) Always link the example programs shared to test that the shared library keeps working. On my mac laptop, Debug libLLVM2.7svn.dylib is 39MB, and opt (for example) is 16M static vs 440K shared. Two things are less than ideal here: 1) The library doesn't include any version information. Since we expect to break the ABI with every release, this shouldn't be much of a problem. If we do release a compatible 2.7.1, we may be able to hack its library to work with binaries compiled against 2.7.0, or we can just ask them to recompile. I'm hoping to get a real packaging expert to look at this for the 2.8 release. 2) llvm-config doesn't yet have an option to print link options for the shared library. I'll add this as a subsequent patch. llvm-svn: 96559
* Make --disable-libffi work on systems with libffi installed. AlsoJeffrey Yasskin2010-02-091-13/+13
| | | | | | | make no-ffi the default even on systems with libffi. This fixes http://llvm.org/PR5018. llvm-svn: 95712
* Reconfigure with autoconf-2.60, and fix autoconf.ac to work with that version.Jeffrey Yasskin2010-02-031-4381/+11585
| | | | llvm-svn: 95191
* Regenerate configure.Torok Edwin2010-01-261-27190/+4452
| | | | | | With the previous cleanup to configure.ac, configure is now only 393k, instead of 1.1M! llvm-svn: 94535
* RegenerateAnton Korobeynikov2010-01-051-1/+1
| | | | llvm-svn: 92763
* Fix typos. Thanks to John Tytgat for noticing it!Rafael Espindola2009-12-071-3/+3
| | | | llvm-svn: 90728
* Regenerate configureDaniel Dunbar2009-11-251-32/+40
| | | | llvm-svn: 89840
* Add configure options for specifying where to look for libstdc++.Rafael Espindola2009-11-161-24/+86
| | | | llvm-svn: 88943
* Add the --with-c-include-dirs to llvm's configure.Rafael Espindola2009-11-121-24/+40
| | | | | | The clang patch is next. llvm-svn: 86955
* configure: Add --with-optimize-option, for setting the default value ofDaniel Dunbar2009-11-041-26/+53
| | | | | | OPTIMIZE_OPTION. llvm-svn: 86005
* Regenerate.Julien Lerouge2009-10-261-25/+38
| | | | llvm-svn: 85148
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-261-2/+2
| | | | | | direct inclusion edge from System to Support. llvm-svn: 85086
* Undo pthread patch from rev. 83930 & 83823. Credit to Paul Davey.Edward O'Callaghan2009-10-141-34/+18
| | | | llvm-svn: 84083
* Provide AuroraUX triple support in configure. Credit to - Paul Davey.Edward O'Callaghan2009-10-141-24/+31
| | | | llvm-svn: 84067
* Regenerate configure for rev. 83823 putback.Edward O'Callaghan2009-10-131-42/+65
| | | | llvm-svn: 83930
* Fix the OProfile part of PR5018. This fixes --without-oprofile, makesJeffrey Yasskin2009-10-071-196/+31
| | | | | | | it the default, and works around a broken libopagent on some Debian systems. llvm-svn: 83503
* Regenerate.Nick Lewycky2009-09-291-0/+90
| | | | llvm-svn: 83052
* Roll back r83048.Nick Lewycky2009-09-291-128/+39
| | | | llvm-svn: 83050
* Regenerate.Nick Lewycky2009-09-291-39/+128
| | | | llvm-svn: 83048
* Enable -g with DEBUG_SYMBOLS and --enable-debug-symbols instead ofJeffrey Yasskin2009-09-271-26/+45
| | | | | | DEBUG_RUNTIME. llvm-svn: 82906
* Fix a compile failure introduced by r82675 on MinGW which doesn't haveJeffrey Yasskin2009-09-251-1/+2
| | | | | | | setenv(). This patch just disables the test rather than getting putenv() to work. Thanks to Sandeep Patel for reporting the problem. llvm-svn: 82797
* PR4047: Permit configure --enable-targets=host,cpp for example. "host" has theJeffrey Yasskin2009-09-231-46/+50
| | | | | | | same effect that "host-only" used to have, but can be combined with other targets. host-only is still available as a synonym but no longer documented. llvm-svn: 82634
* Enable the jit for llvm-config.Eric Christopher2009-09-141-1/+1
| | | | | | Patch by Xerxes Rånby! llvm-svn: 81768
* install-sh chmods to 0755 by default, and this causes 'git diff' to showTorok Edwin2009-08-281-13/+13
| | | | | | | | that all the Makefiles changed mode. Fix this by tellint install-sh to chmod only to 0644, these are not executable files after all! llvm-svn: 80371
* re-apply r80197, now that iterator.h is not mentioned any moreGabor Greif2009-08-271-46/+26
| | | | llvm-svn: 80254
* --- Reverse-merging r80147 into '.':Bill Wendling2009-08-271-26/+46
| | | | | | | | | | | | | | | | | | | | | | 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
* Regenerate configureDouglas Gregor2009-08-261-46/+26
| | | | llvm-svn: 80173
* Regenerate configure.Tanya Lattner2009-08-221-3/+3
| | | | llvm-svn: 79772
* Regenerate configure for 2.7svnTanya Lattner2009-08-221-9/+9
| | | | llvm-svn: 79726
* RegenerateAnton Korobeynikov2009-08-181-27/+88
| | | | llvm-svn: 79297
* Regenerate per request of Gabor Greif (r78628)Shantonu Sen2009-08-111-64/+86
| | | | llvm-svn: 78661
* Build Blackfin target with autoconf and cmake.Jakob Stoklund Olesen2009-08-021-1/+1
| | | | | | Note that configure was edited by hand. Will somebody with the correct version of autoconf please regenerate? llvm-svn: 77898
OpenPOWER on IntegriCloud