- Jul 14, 2005
-
-
Reid Spencer authored
llvm-svn: 22430
-
- Jul 13, 2005
-
-
Reid Spencer authored
GRAPHVIZ will contain the path to the program if its found (or "echo Graphviz" if not) and the #define HAVE_GRAPHVIZ will be defined if its found. llvm-svn: 22424
-
- Jul 12, 2005
-
-
Reid Spencer authored
This patch completes the changes for making lli thread-safe. Here's the list of changes: * The Support/ThreadSupport* files were removed and replaced with the MutexGuard.h file since all ThreadSupport* declared was a Mutex Guard. The implementation of MutexGuard.h is now based on sys::Mutex which hides its implementation and makes it unnecessary to have the -NoSupport.h and -PThreads.h versions of ThreadSupport. * All places in ExecutionEngine that previously referred to "Mutex" now refer to sys::Mutex * All places in ExecutionEngine that previously referred to "MutexLocker" now refer to MutexGuard (this is frivolous but I believe the technically correct name for such a class is "Guard" not a "Locker"). These changes passed all of llvm-test. All we need now are some test cases that actually use multiple threads. llvm-svn: 22404
-
Reid Spencer authored
* Add check for pthread.h * Make sure -lpthread gets added to LIBS if its available llvm-svn: 22402
-
- Jun 03, 2005
-
-
Reid Spencer authored
.exe extension) on Cygwin. This fixes the last few remaining Cygwin issues. Thanks to Aaron Gray for tracking this down. llvm-svn: 22191
-
- May 19, 2005
-
-
Reid Spencer authored
llvm-svn: 22138
-
- May 18, 2005
-
-
John Criswell authored
llvm-svn: 22122
-
John Criswell authored
llvm-svn: 22120
-
- May 16, 2005
-
-
Duraid Madina authored
changes to me) - not committing autoconf/configure.ac (oops, already committed that!) - not committing include/llvm/Config/config.h.in (it remains unchanged) llvm-svn: 22085
-
Reid Spencer authored
simplify-libcalls pass (pass now computes it without a call to ffsll). llvm-svn: 22074
-
- May 14, 2005
-
-
Reid Spencer authored
* Check for availability of ffsll call in configure script * Support ffs, ffsl, and ffsll conversion to constant value if the argument is constant. llvm-svn: 22027
-
- May 13, 2005
-
-
Reid Spencer authored
script was defaulting the LLVMGCC variable to "llvm-gcc" if it couldn't find llvm-gcc and --with-llvmgccdir was not specified. In this case, there is no llvm-gcc available on the system so we shouldn't assume that the user's path will find it any better than configure could. The fix is to default it to an empty string. If LLVMGCC is empty, the makefiles will avoid building things that depend on llvm-gcc and give a nice warning message to that effect. llvm-svn: 21953
-
Misha Brukman authored
* Fix copyright line llvm-svn: 21910
-
- Apr 22, 2005
-
-
Misha Brukman authored
llvm-svn: 21455
-
Reid Spencer authored
llvm-svn: 21448
-
Reid Spencer authored
--enable-target which can take values "all", "host-only" or a comma separated list of target names (alpha,ia64,powerpc,skeleton,sparc,x86) llvm-svn: 21447
-
Reid Spencer authored
options have been added to the configure script that control which targets will be used. The options are: --enable-target-this (default=disabled) This will specify that the target corresponding to the build host is the target that will be compiled/used. You can't use this with any of the other options (they'll be ignored). This is what most people want. --disable-target-x86 (default=enabled) This will prevent the X86 target(s) from being compiled/used. --disable-target-sparc (default=enabled) This will prevent both SparcV8 and SparcV9 from being compiled/used. --disable-target-powerpc (default=enabled) This will prevent the PowerPC target from being compiled/used. --disable-target-alpha (default=enabled) This will prevent the Alpha target from being compiled/used. --disable-target-ia64 (default=enabled) This will prevent the IA64 target from being compiled/used. Note that without any of these options, the default behavior is to build all targets, as is the current practice. All these options do is set up the substititution variable TARGETS_TO_BUILD which contains the targets that should be compiled/used. The variable is intended to be used in the makefiles. Those changes will come later. llvm-svn: 21445
-
- Mar 17, 2005
-
-
Misha Brukman authored
llvm-svn: 20666
-
- Feb 24, 2005
-
-
Reid Spencer authored
LLVM_CONFIG_PROJECT macro. llvm-svn: 20313
-
- Feb 16, 2005
-
-
Reid Spencer authored
The install target in Makefile.rules no longer uses pax but just uses find and "install" instead. llvm-svn: 20216
-
- Feb 11, 2005
-
-
Chris Lattner authored
llvm-svn: 20116
-
- Jan 24, 2005
-
-
Andrew Lenharth authored
llvm-svn: 19810
-
- Jan 16, 2005
-
-
Alkis Evlogimenos authored
llvm-svn: 19616
-
Reid Spencer authored
(RogueWave). These are implemented in rw/stdex/hash_map.h and rw/stdex/hash_set.h on HP/UX. llvm-svn: 19600
-
- Jan 14, 2005
-
-
Alkis Evlogimenos authored
llvm-svn: 19546
-
- Jan 05, 2005
-
-
Alkis Evlogimenos authored
llvm-svn: 19295
-
- Dec 31, 2004
-
-
Reid Spencer authored
Make LLVM_ON_UNIX and LLVM_ON_WIN32 available in the makefiles llvm-svn: 19205
-
Reid Spencer authored
* lib/System depends on sbrk(3), make sure we check for it. llvm-svn: 19200
-
- Dec 29, 2004
-
-
Reid Spencer authored
* Add CAN_DLOPEN_SELF so we can determine if dlopen(0) will open the program or not. * Correct a warning messages to be a little more specific on what it checks llvm-svn: 19184
-
- Dec 28, 2004
-
-
Reid Spencer authored
llvm-svn: 19170
-
Reid Spencer authored
llvm-svn: 19169
-
- Dec 27, 2004
-
-
Reid Spencer authored
llvm-svn: 19166
-
Reid Spencer authored
* Add checks for sterror and strerror_r functions * Add check to determine if /dev/zero is needed for allocating RWX memory. llvm-svn: 19148
-
- Dec 25, 2004
-
-
Reid Spencer authored
* Make sure all headers used by lib/System have checks * Use "standard" autoconf checks for certain problematic headers For PR432: * Resurrect --with-llvmgccdir so a specific llvm-gcc/llvm-g++ installation can be specified. llvm-svn: 19142
-
- Dec 24, 2004
-
-
Reid Spencer authored
llvm-svn: 19136
-
Reid Spencer authored
Create new variables LLVM_ON_UNIX and LLVM_ON_WIN32 so we can start getting rid of reliance upon a symbolic link to switch implementations in lib/System llvm-svn: 19131
-
- Dec 23, 2004
-
-
Reid Spencer authored
Patch contributed by Markus F.X.J. Oberhumer. llvm-svn: 19118
-
Reid Spencer authored
llvm-svn: 19113
-
- Dec 22, 2004
-
-
Reid Spencer authored
* Remove --with-llvmgccdir, not needed any more * Search path for llvm-gcc and llvm-gxx * Compute LLVMGCCDIR based on install path of llvm-gcc llvm-svn: 19093
-
- Dec 20, 2004
-
-
Reid Spencer authored
* Add checks for sbrk and getpagesize functions * Alphebetize the checks for functions llvm-svn: 19052
-