summaryrefslogtreecommitdiffstats
path: root/llvm/autoconf/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
...
* Add an optional separate install prefix for internal components. rdar://10217046Bob Wilson2011-11-281-0/+6
| | | | | | | | | | | Some files installed by clang are not relevant for general users and we'd like to be able to install them to a different location. This adds a new --with-internal-prefix configure option and a corresponding PROJ_internal_prefix makefile variable, which defaults to the standard prefix. A tool makefile can specify that it should be installed to this internal prefix by defining INTERNAL_TOOL. llvm-svn: 145234
* rename ENABLE_THREADS to LLVM_ENABLE_THREADSDylan Noblesmith2011-11-281-6/+7
| | | | | | | | | | | Now that it needs to be exported in a public header (Valgrind.h) it should be prefixed to avoid collision with other projects. Add it to llvm-config.h as well. This'll require regenerating the configure script after this commit, but I don't have the required autoconf version. llvm-svn: 145214
* Add configure checking for pread(2) and use it to save a syscall when ↵Benjamin Kramer2011-11-221-1/+1
| | | | | | reading files. llvm-svn: 145061
* Add an option '--enable-libcpp' that will have the compiler pass onEric Christopher2011-11-111-0/+12
| | | | | | options to use libc++ as the default c++ library. llvm-svn: 144413
* rename LLVM_HOSTTRIPLE into LLVM_DEFAULT_TARGET_TRIPLESebastian Pop2011-11-011-2/+2
| | | | llvm-svn: 143501
* derive LLVM_HOSTTRIPLE from targetSebastian Pop2011-11-011-1/+1
| | | | llvm-svn: 143500
* Remove the Alpha backend.Dan Gohman2011-10-271-6/+2
| | | | llvm-svn: 143164
* Revert 142997. It doesn't work on Mac OS or the BSDs, which all use the BSDCharles Davis2011-10-261-1/+0
| | | | | | | version of the install program, which does not have the --strip-program switch. llvm-svn: 143009
* Search for and use the strip program and pass it to install for itEric Christopher2011-10-261-0/+1
| | | | | | | | to use for stripping final executables. Patch by Simon Atanasyan! llvm-svn: 142997
* Remove the Blackfin backend.Dan Gohman2011-10-251-6/+2
| | | | llvm-svn: 142880
* Remove the SystemZ backend.Dan Gohman2011-10-241-6/+2
| | | | llvm-svn: 142878
* autoconf: Introduce --with-clang-srcdir, to build out-of-tree clang as ↵NAKAMURA Takumi2011-10-161-0/+11
| | | | | | tools/clang on tools/Makefile. llvm-svn: 142102
* ToT is now for 3.1.Bill Wendling2011-10-151-1/+1
| | | | llvm-svn: 142044
* ocaml bindings: add findlib META supportTorok Edwin2011-10-141-0/+3
| | | | | | | This makes it easier to link against LLVM libs, especially if you are using _oasis. llvm-svn: 141992
* configure: [cygming] Set --disable-embed-stdcxx by default on --enable-shared.NAKAMURA Takumi2011-10-131-2/+2
| | | | | | Many distros provide stdc++.dll recently. --enable-embed-stdcxx might confuse people. llvm-svn: 141875
* We're no longer going to bother supporting platforms that don'tEric Christopher2011-09-231-4/+2
| | | | | | | | support C89. We probably didn't support them anyways. llvm-svn: 140361
* Remove the rest of the compiler checking from the top level configureEric Christopher2011-09-211-72/+0
| | | | | | script. Only the testsuite project needs to know this information. llvm-svn: 140220
* Remove llvm-gcc and various compiler handling from llvm. It's not neededEric Christopher2011-09-201-125/+3
| | | | | | here anymore and has been migrated to the test-suite project. llvm-svn: 140216
* Fix typos.Eric Christopher2011-09-201-2/+2
| | | | llvm-svn: 140194
* Remove llvmc and assorted build machinery for it.Eric Christopher2011-09-191-3/+0
| | | | | | | | The problems that llvmc solved have largely been subsumed with the tasks that the clang driver can accomplish, but llvmc lacks flexibility and depends too heavily on the EOL'd llvm-gcc. llvm-svn: 140093
* Rename LLVM_MULTITHREADED define and fix build without threads.Eric Christopher2011-09-191-2/+2
| | | | | | Patch by Arrowdodger. llvm-svn: 140064
* Move the AC_PROG_CC checks earlier in the configure file. The latenessEric Christopher2011-09-161-5/+6
| | | | | | | | | | | | of the original check meant that configure was caching the default CC check and using that instead of the result of AC_PROG_CC in both configure checks and during compilation. This wasn't affecting C++ so it was hard to notice. Regenerate configure. llvm-svn: 139937
* Have the llvm configure process look for clang, then llvm-gcc, and then gccEric Christopher2011-09-161-2/+2
| | | | | | on all platforms. llvm-svn: 139934
* Add NativeClient operating system support.Ivan Krasin2011-08-181-0/+2
| | | | | | | | | | | | | | This patch adds support of NativeClient (*-*-nacl) OS support to LLVM. It's already supported in autoconf/config.sub. The motivation for this change is to start upstreaming PNaCl work. The whole set of patches include llvm backends (i686, x86_64, ARM), llvm-gcc (probably, would not be upstreamed because it's deprecated) and clang (the work has been just started, the amount of changes is going to be low and the most of the work is expected to be done close to the mainline). llvm-svn: 138005
* Update the default bug report url in autoconf.Chad Rosier2011-08-021-2/+2
| | | | llvm-svn: 136721
* Combine all MC initialization routines into one. e.g. InitializeX86MCAsmInfo,Evan Cheng2011-07-221-6/+3
| | | | | | InitializeX86MCInstrInfo, etc. are combined into InitializeX86TargetMC. llvm-svn: 135812
* Added the infrastructute necessary for MIPS JIT support. Patch by VladimirBruno Cardoso Lopes2011-07-211-1/+1
| | | | | | | | Stefanovic. I removed the part that actually emits the instructions cause I want that to get in better shape first and in incremental steps. This also makes it easier to review the upcoming parts. llvm-svn: 135678
* Introduce MCCodeGenInfo, which keeps information that can affect codegenEvan Cheng2011-07-191-0/+3
| | | | | | | (including compilation, assembly). Move relocation model Reloc::Model from TargetMachine to MCCodeGenInfo so it's accessible even without TargetMachine. llvm-svn: 135468
* Add new configure option, --with-bug-report-url, which allows users/vendors toChad Rosier2011-07-151-0/+8
| | | | | | | specify where bug reports should be submitted. Part of rdar://9575623 llvm-svn: 135233
* Rename createAsmInfo to createMCAsmInfo and move registration code to ↵Evan Cheng2011-07-141-0/+3
| | | | | | MCTargetDesc to prepare for next round of changes. llvm-svn: 135219
* Add initial *-*-rtems* target, from Joel SherrillDouglas Gregor2011-07-011-0/+2
| | | | llvm-svn: 134282
* build/configure: Add support for --with-extra-ld-options flag (to provide extraDaniel Dunbar2011-06-161-0/+11
| | | | | | options just to pass to ld). llvm-svn: 133206
* Happy new year.Benjamin Kramer2011-06-121-2/+2
| | | | | | Only 163 days late! llvm-svn: 132895
* ...this is not a good commit day for me.John McCall2011-05-291-2/+1
| | | | llvm-svn: 132294
* On Darwin ARM, set the UNWIND_RESUME libcall to _Unwind_SjLj_Resume.John McCall2011-05-291-1/+2
| | | | | | | This is important for the correct lowering of unwind instructions (which doesn't matter at all) and llvm.eh.resume calls (which does). llvm-svn: 132291
* The dragonegg option to disable LLVM optimizations changed.Duncan Sands2011-05-231-1/+1
| | | | llvm-svn: 131903
* Re-add the autoconf rule for the docs/doxygen.cfg file.Peter Collingbourne2011-05-131-0/+6
| | | | | | | | For some reason this was not reverted when r103213 was. At the same time, add an optional rule for clang's doxygen.cfg. llvm-svn: 131279
* Windows/DynamicLibrary.inc: Clean up ELM_Callback. We may check the decl ↵NAKAMURA Takumi2011-05-011-0/+18
| | | | | | | | | instead of the versions of individual libraries. autoconf: Add checking ELM_Callback decl for mingw32 and mingw-w64. cmake/config-ix.cmake: Add checking ELM_Callback decl for win32. llvm-svn: 130657
* Check that the AsmParser exists for the native target to enable initializationJan Sjödin2011-03-141-3/+7
| | | | | | function. llvm-svn: 127626
* Missing file from previous commmit (127341) for InitializeTargetAsmParser ↵Jan Sjödin2011-03-091-0/+3
| | | | | | function. llvm-svn: 127345
* Change the next release number to 3.0svn.Bill Wendling2011-03-081-1/+1
| | | | llvm-svn: 127213
* lib/Support/Errno.cpp: Check strerror_s() with HAVE_DECL_STRERROR_S in ↵NAKAMURA Takumi2011-02-091-1/+4
| | | | | | | | | | config.h.*. AC_CHECK_FUNCS seeks a symbol only in libs. We should check the declaration in string.h. FIXME: I have never seen mingw(s) have strerror_s() (not _strerror_s()). FIXME: Autoconf/CMake may seek strerror_s() with the definition MINGW_HAS_SECURE_API in future. llvm-svn: 125172
* Windows/DynamicLibrary.inc: Split explicit symbols into explicit_symbols.inc.NAKAMURA Takumi2011-02-051-0/+22
| | | | | | | config.h.* have conditions whether each symbol is defined or not. Autoconf and CMake may check symbols in libgcc.a for JIT on Mingw. llvm-svn: 124950
* configure: Add checks for <sys/uio.h> and writev().Daniel Dunbar2011-02-031-2/+2
| | | | llvm-svn: 124769
* autoconf: Add --disable-embed-stdcxx to suppress linking libstdc++.a into ↵NAKAMURA Takumi2010-12-291-0/+12
| | | | | | | | llvm.dll with --enable-shared on Cygming. Cygwin has stdc++.dll in it's distribution, and we can assume distro's stdc++.dll might be available. llvm-svn: 122622
* autoconf: [PR7874] Add --disable-pthreads to suppress detecting pthreads on ↵NAKAMURA Takumi2010-12-291-2/+14
| | | | | | | | certain hosts. This would be needed to build pthread*.dll-free distribution on recent MinGW-MSYS distros. llvm-svn: 122621
* Use GZIPBIN instead of GZIP. Apparently gzip uses GZIP as an environmentEric Christopher2010-12-101-1/+1
| | | | | | | | | | variable for args you want to default pass to gzip. Patch based on one by asau@inbox.ru. Fixes PR8758. llvm-svn: 121449
* autoconf: Stop lying to me.Daniel Dunbar2010-12-081-2/+2
| | | | llvm-svn: 121222
* Two things: Fix testcase to use extern - otherwise the link will alwaysEric Christopher2010-12-071-7/+15
| | | | | | | succeed. Also make the testcase clearer as to what we're doing and emit a checking notification to the log. llvm-svn: 121101
* Apparently OS X 10.4 doesn't have __crashreporter_info__.Eric Christopher2010-12-031-1/+9
| | | | | | Try to fix building on the wayback machine. llvm-svn: 120801
OpenPOWER on IntegriCloud