summaryrefslogtreecommitdiffstats
path: root/llvm/autoconf/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
...
* Recognize Interix systems as if they were SunOS and make sure we don'tReid Spencer2004-08-311-0/+9
| | | | | | attempt to configure for "Unknown" system types. llvm-svn: 16120
* Create a link from $BUILD_OBJ_ROOT/lib/System/platform toReid Spencer2004-08-291-15/+31
| | | | | | | | $BUILD_SRC_ROOT/lib/System/$build which gives us the ability to configure the lib/System for the current type of operating system. Also cleaned up some indentation. llvm-svn: 16082
* Ensure that the examples get built.Reid Spencer2004-08-241-0/+1
| | | | llvm-svn: 16027
* Actually name the #define correctly.Reid Spencer2004-08-201-1/+1
| | | | llvm-svn: 15945
* Change version 1.3 -> 1.4Reid Spencer2004-08-201-1/+35
| | | | | | | Add basic installation directories as AC_DEFINES and AC_SUBST so they can be used by llvm programs with a simple #include <Config/config.h> llvm-svn: 15942
* Change the package identification to use one less level of quoting so thatReid Spencer2004-08-041-1/+1
| | | | | | PACKAGE_VERSION = "1.3" instead of "[1.3]". Rebuild configure script. llvm-svn: 15453
* Revised the generation of files so that they follow the newer autoconfJohn Criswell2004-07-231-7/+12
| | | | | | | standards. This is in hopes of fixing configuration problems on Windows Services for Unix. llvm-svn: 15132
* Add call to check for isinf().Brian Gaeke2004-07-211-0/+1
| | | | | | Patch contributed by Bill Wendling. llvm-svn: 15053
* Added support for stdint.h. It is now automatically included byJohn Criswell2004-07-191-0/+5
| | | | | | | DataTypes.h. So far, it doesn't seem to break Linux, Solaris, or MacOS X. This should automatically include it for those people who need it. llvm-svn: 15006
* Call custom check (AC_FUNC_ISNAN) instead of using the generic function check.Brian Gaeke2004-06-221-1/+3
| | | | llvm-svn: 14335
* Added the llvm/test/Programs/Makefile.test Makefile.John Criswell2004-06-221-1/+2
| | | | | | Added a check for isnan() while I was at it. llvm-svn: 14333
* Add AIX to the list of recognized operating systems.Misha Brukman2004-06-221-3/+3
| | | | llvm-svn: 14319
* Added checks for mkstemp and getrusage.John Criswell2004-06-071-1/+1
| | | | llvm-svn: 14047
* Recognize cygwinChris Lattner2004-06-021-0/+3
| | | | llvm-svn: 13976
* Added a check for a new header file.John Criswell2004-05-271-1/+1
| | | | | | | My apologies for changing config.h.in. Now you will all have to re-configure. llvm-svn: 13846
* Only give warnings if the user doesn't have mmap(). This is pretty muchJohn Criswell2004-05-271-2/+2
| | | | | | | a hack that allows users to fight through a build if they don't have mmap(). When I get into the office, I'll make something better. llvm-svn: 13801
* Refactor external benchmark checking stuff into one hairyBrian Gaeke2004-04-161-69/+32
| | | | | | macro-to-bind-them-all, called EXTERNAL_BENCHMARK(). llvm-svn: 12994
* We are now on LLVM 1.3Chris Lattner2004-04-141-3/+3
| | | | | | Make autoconf default to checking to look to see if our funny directory exists llvm-svn: 12947
* Rewrite POV-Ray check as per PR301Brian Gaeke2004-04-131-20/+35
| | | | llvm-svn: 12914
* check for isatty functionBrian Gaeke2004-04-021-1/+1
| | | | llvm-svn: 12635
* Modified the default pathname for Povray.John Criswell2004-02-261-3/+3
| | | | llvm-svn: 11881
* Remove .micro references as those files no longer exist and add some more ↵Alkis Evlogimenos2004-02-261-2/+2
| | | | | | recent Makefile additions to the list llvm-svn: 11866
* Fix bugs found with recent addition of assertions inAlkis Evlogimenos2004-02-251-7/+7
| | | | | | MRegisterInfo::is{Physical,Virtual}Register. llvm-svn: 11849
* Added the VTune tests.John Criswell2004-02-241-0/+1
| | | | llvm-svn: 11809
* Add SUBSTing checks for sys/types.h and inttypes.h; add DataTypes.h to ↵Brian Gaeke2004-02-231-2/+15
| | | | | | AC_OUTPUT. llvm-svn: 11777
* Change test for pthreads to use AC_SUBST; add ThreadSupport.h as an AC_OUTPUT.Brian Gaeke2004-02-231-2/+4
| | | | llvm-svn: 11771
* Remove check for slistBrian Gaeke2004-02-231-1/+0
| | | | llvm-svn: 11769
* Add include/Support/hash_map and include/Support/hash_set as AC_OUTPUT files.Brian Gaeke2004-02-231-1/+4
| | | | llvm-svn: 11763
* Add include/Support/iterator as an AC_OUTPUT file.Brian Gaeke2004-02-231-1/+1
| | | | llvm-svn: 11751
* Added an option for configuring Povray. By default, it should find my localJohn Criswell2004-02-201-0/+23
| | | | | | installation of Povray (and not do anything for people who don't have it). llvm-svn: 11680
* Add checks for <execinfo.h> and backtrace().Brian Gaeke2004-02-201-2/+2
| | | | llvm-svn: 11660
* Adjusted the default pathname to the SPEC95 benchmarks. The new directoryJohn Criswell2004-02-161-3/+3
| | | | | | | has source code corrections and some input files pre-filtered for use with the LLVM test suite. llvm-svn: 11498
* Added check for target machine endian-ness and put the result intoJohn Criswell2004-02-131-0/+3
| | | | | | Makefile.config (ENDIAN variable is set to big or little). llvm-svn: 11398
* Added support for configuring SPEC95.John Criswell2004-02-101-1/+24
| | | | llvm-svn: 11295
* Add autoconf check for the version of etags we have detected, and selectBrian Gaeke2004-01-221-0/+8
| | | | | | appropriate "force C++" command-line option. llvm-svn: 10963
* Get the shlib suffix from Libtool, and define it both in config.h and ↵Brian Gaeke2004-01-211-0/+11
| | | | | | Makefile.config as SHLIBEXT. llvm-svn: 10932
* Get paths to cc1 and cc1plus by asking llvm-gcc, and AC_SUBST them.Brian Gaeke2004-01-161-0/+4
| | | | llvm-svn: 10901
* Remove configure support for endianness checking, the need for whichBrian Gaeke2004-01-151-3/+0
| | | | | | Chris has helpfully expunged. llvm-svn: 10873
* Remove and/or shorten many comments in configure.ac.Brian Gaeke2004-01-131-187/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | Remove checks for many common Unix programs. Our build process currently assumes they are there and makes no provisions for any other world-views. (We can add some of these checks back at some later time if it should prove useful, but right now, we do not need to check to see whether "rm" exists.) Remove checks for many common standard C headers and functions. We assume ISO/ANSI C++, and we always use the <cfoo> versions of ANSI C's <foo.h> headers, so these checks will not help anything. Edit configure's warning messages for clarity and content. Change checks for "optional" programs to default to using "true" instead of "false", so that a failure to find, e.g., etags, will be less likely to result in make failing. No longer shall we check for --enable-purify or --with-purify options. No longer shall we propagate these to the Makefiles. configure regenerated using autoconf-2.57. Please feel free to send me any questions or comments you have. :-) llvm-svn: 10814
* Fix help string for --enable-spec2000 optionAlkis Evlogimenos2003-12-201-1/+1
| | | | llvm-svn: 10564
* Merged in RELEASE_11.John Criswell2003-12-181-1/+1
| | | | llvm-svn: 10516
* Don't configure directories that don't have a configure script (i.e Stacker).John Criswell2003-12-121-1/+1
| | | | llvm-svn: 10436
* Add check for pthread_mutex_lock() in -lpthread (or otherwise).Brian Gaeke2003-12-051-0/+4
| | | | | | Regenerated configure w/ autoconf-2.57. llvm-svn: 10293
* Configure all project directories contained in llvm/projects.John Criswell2003-11-251-26/+13
| | | | | | | The autoconf program will generate a warning about how we should use a literal in AC_CONFIG_SUBDIRS. This warning can be ignored. llvm-svn: 10222
* Added a pseudo-hack: The Makefile now copies Makefiles from source tree toJohn Criswell2003-11-251-135/+0
| | | | | | | | object tree if it is missing. This means that new Makefiles should get picked up automagically, requiring less bothersome re-configuring after updates. llvm-svn: 10209
* Add Stacker directories.Brian Gaeke2003-11-241-0/+8
| | | | llvm-svn: 10190
* Added a check for the -R linker option.John Criswell2003-11-171-0/+3
| | | | llvm-svn: 10056
* Edit some comments slightly.Brian Gaeke2003-11-171-13/+17
| | | | | | | | Set OS (build OS) and ARCH (target arch) based on the proper elements (SYSTEM, and CPU, respectively) of the CPU-COMPANY-SYSTEM tuples. Add OS and ARCH settings for PowerPC/Darwin (Mac OS X). llvm-svn: 10047
* Only default to the llvm-gcc in ~lattner if that directory exists.Brian Gaeke2003-11-161-4/+54
| | | | | | | Only warn if python version is not right; don't abort. Add sanity checks for --with-llvmgccdir, with a big warning message at the end. llvm-svn: 10024
* OK, scratch my last post, this actually *does* work, those syntax errors wereMisha Brukman2003-11-121-0/+7
| | | | | | imaginary. llvm-svn: 9941
OpenPOWER on IntegriCloud