summaryrefslogtreecommitdiffstats
path: root/llvm/autoconf
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove host endianness info from TargetData andDuncan Sands2007-12-121-4/+1
| | | | | | | | put it in a new header System/Host.h instead. Instead of getting the endianness from configure, calculate it directly. llvm-svn: 44959
* Fix PR1836: in the interpreter, read and write apintsDuncan Sands2007-12-101-1/+4
| | | | | | | | | | | | | | | | using the minimum possible number of bytes. For little endian targets run on little endian machines, apints are stored in memory from LSB to MSB as before. For big endian targets on big endian machines they are stored from MSB to LSB which wasn't always the case before (if the target and host endianness doesn't match values are stored according to the host's endianness). Doing this requires knowing the endianness of the host, which is determined when configuring - thanks go to Anton for this. Only having access to little endian machines I was unable to properly test the big endian part, which is also the most complicated... llvm-svn: 44796
* Minor updates:Scott Michel2007-12-051-2/+1
| | | | | | | | - Fix typo in SPUCallingConv.td - Credit myself for CellSPU work - Add CellSPU to 'all' host target list llvm-svn: 44627
* More stuff for CellSPU -- this should be enough to get an error-freeScott Michel2007-12-051-0/+3
| | | | | | compilation (no files missing). Test cases remain to be checked in. llvm-svn: 44598
* Add --with-llvmgcc= and --with-llvmgxx= configure options.Devang Patel2007-12-041-2/+28
| | | | llvm-svn: 44586
* Add target triple to include/llvm/Config/config.h.in. Regenerate all files.Eric Christopher2007-12-011-65/+66
| | | | llvm-svn: 44478
* Fixing a typo in configure.ac.Gordon Henriksen2007-10-031-1/+1
| | | | | | Patch by Adam Goode. llvm-svn: 42574
* Providing --with-ocaml-libdir for ./configure. The default is theGordon Henriksen2007-10-021-0/+52
| | | | | | | | | | | stdlib if it's beneath --prefix, and is libdir/ocaml otherwise. If someone has a better way than this to test whether $B is a path within $A, I'd love to hear it: if test "$A" \< "$B" -a "$B" \< "${A}~" llvm-svn: 42532
* Fixing (harmless) typos.Gordon Henriksen2007-10-021-1/+1
| | | | llvm-svn: 42528
* Add explicit --enable-bindings option to configure.Gordon Henriksen2007-10-021-0/+31
| | | | llvm-svn: 42526
* PR1601: etags not configured correctlyGordon Henriksen2007-09-291-9/+0
| | | | | | Resolving this by deleting vestigal etags remnants. llvm-svn: 42460
* Fix for srcdir <> objdir builds.Gordon Henriksen2007-09-221-0/+2
| | | | | | Thanks Bill. llvm-svn: 42240
* Incorporating review feedback for GC verifier patch.Gordon Henriksen2007-09-201-0/+1
| | | | llvm-svn: 42163
* (no commit message)Gordon Henriksen2007-09-181-0/+2
| | | | llvm-svn: 42091
* Fix broken default help strings for enable-shared, enable-static, and ↵Tanya Lattner2007-09-171-3/+3
| | | | | | enable-fast-install. Regenerate configure script. llvm-svn: 42066
* Change to 2.2svn.Tanya Lattner2007-09-141-1/+1
| | | | llvm-svn: 41941
* add mips target to builder. I'd appreciate it if someone withChris Lattner2007-08-191-1/+5
| | | | | | the right version of autoconf could regenerate the configure script. llvm-svn: 41172
* Fix PR1606:Reid Spencer2007-08-171-2/+3
| | | | | | | | | The AC_CHECK_HEADER macro was used instead of AC_CHECK_HEADERS. The former does not automatically add a #define to the configure variables while the latter does. Consequently, the HAVE_PTHREAD_H symbol was not defined which caused the Mutex.cpp file to compile to an empty implementation. llvm-svn: 41137
* Add detection of __dso_handle presence during configure. Use this ↵Anton Korobeynikov2007-07-301-0/+3
| | | | | | | | | information in the JITer (short path is added for darwin). This is needed to properly JIT llvm-gcc-4.2-built binaries, since cxa_atexit is enabled by default on much more targets. llvm-svn: 40600
* support poolalloc as checked out from svnAndrew Lenharth2007-07-171-0/+1
| | | | llvm-svn: 39983
* * llvm.spec.in: update blurbGabor Greif2007-07-132-7/+21
| | | | | | | | | | | * autoconf/AutoRegen.sh: use variables for autofoo versions * autoconf/configure.ac: test for some more functions that are not guaranteed on solaris Note: the svn:mime-type of autoconf/AutoRegen.sh should be set to something that allows for text compares using svn diff llvm-svn: 39800
* cvs -> svnReid Spencer2007-07-091-1/+1
| | | | llvm-svn: 38443
* Revert last change until issue reported by Owen, won't be fixed.Anton Korobeynikov2007-07-031-1/+1
| | | | llvm-svn: 37854
* Rename llvm-test => test-suite. By Dave Greene.Anton Korobeynikov2007-07-031-1/+1
| | | | llvm-svn: 37852
* Convert .cvsignore filesJohn Criswell2007-06-291-2/+0
| | | | llvm-svn: 37801
* Add support for building with _GLIBCXX_DEBUG. New configure optionDavid Greene2007-06-281-0/+11
| | | | | | | | | | | | | --enable-expensive-checks allows the developer to enable runtime checking that can greatly increase compile time. Currently it only turns on _GLIBCXX_DEBUG. Other expensive debugging checks added later should be controlled by this configure option. This patch also updates llvm-config with a --cppflags option to inform llvm-gcc how to build itself so that it is compatible with an llvm that was built with _GLIBCXX_DEBUG. llvm-svn: 37777
* Make Perl a required dependency and cause configure script to fail if itReid Spencer2007-05-171-0/+1
| | | | | | is not found. llvm-svn: 37164
* Bump version number in cvsTanya Lattner2007-05-081-1/+1
| | | | llvm-svn: 36920
* Add support for determining which languages the llvm-gcc front endReid Spencer2007-04-211-0/+4
| | | | | | supports. llvm-svn: 36319
* Hack the shared library extension for dylib. The existing code just looksReid Spencer2007-04-111-1/+1
| | | | | | | plain wrong since $module was never defined so we always get .so which is broken on Darwin. Just force it to .dylib. llvm-svn: 35873
* Check for .svn directories too to determine if a debug build is appropriate.Reid Spencer2007-04-021-3/+3
| | | | llvm-svn: 35595
* For PR1283:Reid Spencer2007-03-291-1/+2
| | | | | | | | Change the llvm-gcc sanity check to look for "target datalayout" instead of "implementation". The implementation keyword is no longer generated by llvm or llvm-gcc. llvm-svn: 35451
* Let the new backend begin!Anton Korobeynikov2007-03-211-1/+1
| | | | llvm-svn: 35242
* Add possibility to set memory limit for binaries run via libSystem. ThisAnton Korobeynikov2007-02-161-1/+2
| | | | | | is especially needed for bugpoint. This partly implements PR688 llvm-svn: 34349
* Fix the TARGET_HAS_JIT settings. Sparc doesn't, x86_64 does, ARM doesn't.Reid Spencer2007-01-211-3/+3
| | | | llvm-svn: 33421
* Add support for the ARM target in the target configuration processing.Reid Spencer2007-01-211-0/+4
| | | | llvm-svn: 33418
* For PR808:Reid Spencer2007-01-201-0/+5
| | | | | | Add support for NetBSD. llvm-svn: 33405
* CleanupAnton Korobeynikov2007-01-201-16/+16
| | | | llvm-svn: 33391
* Adding disassembler interface and external hook to udis86 library.Anton Korobeynikov2007-01-191-2/+21
| | | | llvm-svn: 33358
* For PR1074:Reid Spencer2007-01-171-11/+11
| | | | | | Adjust configuration for Stacker's new name: llvm-stacker. llvm-svn: 33277
* '==' is not a legal test operator on BSD. Use '='.Jeff Cohen2007-01-121-6/+6
| | | | llvm-svn: 33126
* Fix a configure warning noticed by Duncan Sands.Reid Spencer2007-01-031-0/+1
| | | | llvm-svn: 32844
* Add a new variable, LLVMGCCLIBEXEC to get the libexec directory where theReid Spencer2006-12-211-0/+2
| | | | | | cc1 and cc1plus executables live. llvm-svn: 32738
* Allow an --enable-pic option to turn on -fPIC compiler option when building.Reid Spencer2006-12-161-0/+14
| | | | | | The default is disabled until we know this doesn't break anyone. llvm-svn: 32635
* Cleaned setjmp/longjmp lowering interfaces. Now we're producing rightAnton Korobeynikov2006-12-101-1/+1
| | | | | | | code (both asm & cbe) for Mingw32 target. Removed autoconf checks for underscored versions of setjmp/longjmp. llvm-svn: 32415
* this warning is obsolete with llvmgcc3 being goneChris Lattner2006-12-081-8/+0
| | | | llvm-svn: 32349
* Expose the sanity.Reid Spencer2006-12-041-0/+2
| | | | llvm-svn: 32193
* For PR1019:Reid Spencer2006-12-011-1/+5
| | | | | | | | Add HAVE_PTHREAD to makefiles with support from configure and use it to determine whether to build examples/ParallelJIT. Patch by Anton Korobeynikov. llvm-svn: 32054
* Undo removal of the runtime libraries. While this may have been a bitReid Spencer2006-11-171-2/+14
| | | | | | | premature, these libraries will be going away for the 2.0 release. Other arrangements for profiling, gc, etc. should be made in the next few months. llvm-svn: 31807
* In LLVM 2.0 we won't use the runtime libraries as llvm-gcc3 support willReid Spencer2006-11-161-14/+2
| | | | | | be dropped. This patch pertains to removing the runtime directory from LLVM. llvm-svn: 31793
OpenPOWER on IntegriCloud