summaryrefslogtreecommitdiff
path: root/include/Config
Commit message (Collapse)AuthorAge
* This is an empty directoryChris Lattner2004-09-21
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16459 91177308-0d34-0410-b5e6-96231b3b80d8
* Changes For Bug 352Reid Spencer2004-09-01
| | | | | | | | | Move include/Config and include/Support into include/llvm/Config, include/llvm/ADT and include/llvm/Support. From here on out, all LLVM public header files must be under include/llvm/. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16137 91177308-0d34-0410-b5e6-96231b3b80d8
* Changes resulting from change in autoconf/configure.in (rename a #define)Reid Spencer2004-08-20
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15946 91177308-0d34-0410-b5e6-96231b3b80d8
* Added various LLVM_* strings that are configured to provide the user'sReid Spencer2004-08-20
| | | | | | | | choice of installation directories. Programs can then automagically know where the installation files are located. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15944 91177308-0d34-0410-b5e6-96231b3b80d8
* Regenerated with autoconf/autoheader 2.57Brian Gaeke2004-07-21
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15059 91177308-0d34-0410-b5e6-96231b3b80d8
* Regenerated with autoheader-2.57.Brian Gaeke2004-07-21
| | | | | | | Patch contributed by Bill Wendling. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15054 91177308-0d34-0410-b5e6-96231b3b80d8
* link.h causes problems on some platforms and is not needed on solaris, whereChris Lattner2004-07-17
| | | | | | | the comment came from. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14905 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove dead fileChris Lattner2004-07-17
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14904 91177308-0d34-0410-b5e6-96231b3b80d8
* Regenerated.Brian Gaeke2004-06-22
| | | | | | | It looks to me like people haven't been running AutoRegen.sh. Grumble grumble. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14337 91177308-0d34-0410-b5e6-96231b3b80d8
* Added the llvm/test/Programs/Makefile.test Makefile.John Criswell2004-06-22
| | | | | | | Added a check for isnan() while I was at it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14333 91177308-0d34-0410-b5e6-96231b3b80d8
* Let's be consistent: listing format `os/arch'.Misha Brukman2004-06-21
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14293 91177308-0d34-0410-b5e6-96231b3b80d8
* Add a target-independent way to query page size.Misha Brukman2004-06-18
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14232 91177308-0d34-0410-b5e6-96231b3b80d8
* Added checks for mkstemp and getrusage.John Criswell2004-06-07
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14047 91177308-0d34-0410-b5e6-96231b3b80d8
* Macros are baaad.Chris Lattner2004-06-05
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14039 91177308-0d34-0410-b5e6-96231b3b80d8
* Don't #include <unistd.h> directly, go through the config filesChris Lattner2004-06-05
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14038 91177308-0d34-0410-b5e6-96231b3b80d8
* <io.h> provides read/write/open/...Chris Lattner2004-06-04
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14017 91177308-0d34-0410-b5e6-96231b3b80d8
* Visual C has something resembling a stat function, but it doesn't provide ↵Chris Lattner2004-06-04
| | | | | | S_ISREG git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14016 91177308-0d34-0410-b5e6-96231b3b80d8
* Make this work on VC++, pull the HAVE_ALLOCA_H case out instead of duplicatingChris Lattner2004-06-04
| | | | | | | | it. This code can probably be dramatically simplified, as I suspect that the pragma and other stuff is not needed with C++ compilers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14015 91177308-0d34-0410-b5e6-96231b3b80d8
* On win32, process.h provides some of the traditional stuff that unistdChris Lattner2004-06-01
| | | | | | | provides. This seems like a relatively clean way to get it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13936 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix bizzare problems when you include Config/dlfcn and Config/windows.h inChris Lattner2004-05-28
| | | | | | | the same xlation unit git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13885 91177308-0d34-0410-b5e6-96231b3b80d8
* An "autoconf wrapper" for the infamous windows.h fileChris Lattner2004-05-27
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13849 91177308-0d34-0410-b5e6-96231b3b80d8
* Added a check for a new header file.John Criswell2004-05-27
| | | | | | | | My apologies for changing config.h.in. Now you will all have to re-configure. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13846 91177308-0d34-0410-b5e6-96231b3b80d8
* Regenerated using autoheader-2.57.Brian Gaeke2004-04-02
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12637 91177308-0d34-0410-b5e6-96231b3b80d8
* Eliminate copy-and-paste commentsChris Lattner2004-02-26
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11873 91177308-0d34-0410-b5e6-96231b3b80d8
* Regenerated with autoheader-2.57.Brian Gaeke2004-02-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11773 91177308-0d34-0410-b5e6-96231b3b80d8
* Regenerated using autoheader-2.57.Brian Gaeke2004-02-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11762 91177308-0d34-0410-b5e6-96231b3b80d8
* Regenerated with autoheader-2.57.Brian Gaeke2004-02-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11752 91177308-0d34-0410-b5e6-96231b3b80d8
* Regenerated using autoheader-2.57.Brian Gaeke2004-02-20
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11657 91177308-0d34-0410-b5e6-96231b3b80d8
* Regenerated using autoconf-2.57 and autoheader-2.57.Brian Gaeke2004-01-21
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10934 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove configure support for endianness checking, the need for whichBrian Gaeke2004-01-15
| | | | | | | Chris has helpfully expunged. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10873 91177308-0d34-0410-b5e6-96231b3b80d8
* Regenerated using autoheader-2.57.Brian Gaeke2004-01-13
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10817 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove standard C file wrapperChris Lattner2004-01-10
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10746 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove wrapper for standard C file, use <cstdlib> insteadChris Lattner2004-01-10
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10745 91177308-0d34-0410-b5e6-96231b3b80d8
* Dead file, use <cstring> instead of this.Chris Lattner2004-01-10
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10743 91177308-0d34-0410-b5e6-96231b3b80d8
* Regenerated using autoheader-2.57Brian Gaeke2003-12-08
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10309 91177308-0d34-0410-b5e6-96231b3b80d8
* Regenerated using autoheader-2.57Brian Gaeke2003-11-18
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10064 91177308-0d34-0410-b5e6-96231b3b80d8
* Regenerated.Brian Gaeke2003-11-10
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9850 91177308-0d34-0410-b5e6-96231b3b80d8
* I think this file is not included by anything.Brian Gaeke2003-10-22
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9380 91177308-0d34-0410-b5e6-96231b3b80d8
* Oops. Typo.John Criswell2003-10-20
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9303 91177308-0d34-0410-b5e6-96231b3b80d8
* Added LLVM header notice.John Criswell2003-10-20
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9302 91177308-0d34-0410-b5e6-96231b3b80d8
* Added a macro and code that checks for the %a format string in sprintf().John Criswell2003-10-13
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9089 91177308-0d34-0410-b5e6-96231b3b80d8
* No longer used anywhere.Brian Gaeke2003-10-10
| | | | | | | | | | | | | | | | | Dead. This is a dead header. It's not pining! It's passed on! This header is no more! It has ceased to be! It's expired and gone to meet its maker! It's a stiff! Bereft of life, it rests in peace! If you hadn't nailed it to the perch it'd be pushing up the daisies! Its metabolic processes are now history! It's off the twig! It's kicked the bucket! It's shuffled off its mortal coil, run down the curtain, and joined the bleeding choir invisibile!! THIS IS AN EX-HEADER!! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9035 91177308-0d34-0410-b5e6-96231b3b80d8
* Regenerated with (at top-level llvm directory):Brian Gaeke2003-10-07
| | | | | | | % autoheader -I autoconf autoconf/configure.ac git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8956 91177308-0d34-0410-b5e6-96231b3b80d8
* CVS, please don't tell us that we have a new config.h file, everyone knows that.Chris Lattner2003-08-03
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7527 91177308-0d34-0410-b5e6-96231b3b80d8
* Enable JIT when the platform supports it.John Criswell2003-07-29
| | | | | | | | | Select /localhome/$USER when it exists. Fix the checks for bidirectional and forward iterators so that they work with version of GCC prior to 3.x. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7383 91177308-0d34-0410-b5e6-96231b3b80d8
* Regardless of whether C provides assert.h, C++ source can always includeChris Lattner2003-07-25
| | | | | | | <cassert>, making this header unneeded. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7311 91177308-0d34-0410-b5e6-96231b3b80d8
* Merged in autoconf branch. This provides configuration via the autoconfJohn Criswell2003-06-30
system. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7014 91177308-0d34-0410-b5e6-96231b3b80d8