Evan Cheng 
							
						 
					 
					
						
						
							
						
						1abf2cb59b 
					 
					
						
						
							
							Rename createAsmInfo to createMCAsmInfo and move registration code to MCTargetDesc to prepare for next round of changes.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135219  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-07-14 23:50:31 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dylan Noblesmith 
							
						 
					 
					
						
						
							
						
						3fa9a42fdd 
					 
					
						
						
							
							remove CMake mode_t define  
						
						 
						
						... 
						
						
						
						It's now replaced with a simple ifdef _MSC_VER in the one
place it's needed (clang's FileManager.h header).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133711  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-06-23 12:21:33 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Frits van Bommel 
							
						 
					 
					
						
						
							
						
						6cd71c6292 
					 
					
						
						
							
							Fix warning in the CMake build about redefining LLVM_PATH_XDOT_PY by making sure both definitions are identical. This used to produce warnings like  
						
						 
						
						... 
						
						
						
						In file included from .../llvm/trunk/tools/lto/LTOCodeGenerator.cpp:45:
In file included from .../llvm/trunk/include/llvm/Support/system_error.h:225:
.../include/llvm/Config/config.h:591:9: warning: 'LLVM_PATH_XDOT_PY' macro redefined
#define LLVM_PATH_XDOT_PY ".../bin/xdot.py"
        ^
.../include/llvm/Config/llvm-config.h:98:9: note: previous definition is here
#define LLVM_PATH_XDOT_PY ""
        ^
1 warning generated.
(Paths edited for clarity)
Note: This only affected people who had xdot.py installed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132050  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-05-25 06:32:23 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NAKAMURA Takumi 
							
						 
					 
					
						
						
							
						
						6073a05240 
					 
					
						
						
							
							Windows/DynamicLibrary.inc: Clean up ELM_Callback. We may check the decl 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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130657  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-05-01 13:29:49 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jan Sjödin 
							
						 
					 
					
						
						
							
						
						dd54ffda26 
					 
					
						
						
							
							Add InitializeNativeAsmParser function.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127341  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-03-09 17:25:46 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tobias Grosser 
							
						 
					 
					
						
						
							
						
						f3a83d6d0b 
					 
					
						
						
							
							cmake: Add xdot.py support as it already exists in autoconf.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126563  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-02-27 04:11:05 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NAKAMURA Takumi 
							
						 
					 
					
						
						
							
						
						e29b0aca51 
					 
					
						
						
							
							lib/Support/Errno.cpp: Check strerror_s() with HAVE_DECL_STRERROR_S in 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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125172  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-02-09 04:18:48 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NAKAMURA Takumi 
							
						 
					 
					
						
						
							
						
						1f6832a858 
					 
					
						
						
							
							Windows/DynamicLibrary.inc: Split explicit symbols into explicit_symbols.inc.  
						
						 
						
						... 
						
						
						
						config.h.* have conditions whether each symbol is defined or not.
Autoconf and CMake may check symbols in libgcc.a for JIT on Mingw.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124950  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-02-05 15:11:53 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oscar Fuentes 
							
						 
					 
					
						
						
							
						
						d931dca6e5 
					 
					
						
						
							
							Moved to Clang's source tree its configuration options and associated  
						
						 
						
						... 
						
						
						
						macros.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124824  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-02-03 22:47:59 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oscar Fuentes 
							
						 
					 
					
						
						
							
						
						254f35ca4a 
					 
					
						
						
							
							Platform tests for sys/uio.h' header and writev' function.  
						
						 
						
						... 
						
						
						
						This is the cmake equivalent for r124769.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124775  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-02-03 04:23:07 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Daniel Dunbar 
							
						 
					 
					
						
						
							
						
						3e46293c27 
					 
					
						
						
							
							Regenerate configure.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124770  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-02-03 02:40:02 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oscar Fuentes 
							
						 
					 
					
						
						
							
						
						78e2074eee 
					 
					
						
						
							
							Adds some platform checks to cmake/config-ix.cmake and fixes checking  
						
						 
						
						... 
						
						
						
						for dlopen/dlerror.
Patch by arrowdodger!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124590  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-01-31 18:25:25 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								NAKAMURA Takumi 
							
						 
					 
					
						
						
							
						
						e85dcb54d1 
					 
					
						
						
							
							CMake: Fix a few definition to suppress warnings.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124583  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-01-31 09:41:20 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oscar Fuentes 
							
						 
					 
					
						
						
							
						
						5969379145 
					 
					
						
						
							
							Handles libffi on the CMake build.  
						
						 
						
						... 
						
						
						
						Patch by arrowdodger!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123976  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-01-21 15:42:54 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oscar Fuentes 
							
						 
					 
					
						
						
							
						
						3c00a83c33 
					 
					
						
						
							
							Add some platform checks. Also fix a typo on a Makefile.  
						
						 
						
						... 
						
						
						
						Patch by arrowdodger!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123659  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-01-17 16:35:14 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oscar Fuentes 
							
						 
					 
					
						
						
							
						
						111fd9ce64 
					 
					
						
						
							
							Make config.h.cmake similar to config.h.in  
						
						 
						
						... 
						
						
						
						Patch by arrowdodger!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123539  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-01-15 13:35:37 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oscar Fuentes 
							
						 
					 
					
						
						
							
						
						da7e2870eb 
					 
					
						
						
							
							Reorder macros on config.h.cmake to easily compare it against  
						
						 
						
						... 
						
						
						
						config.h.in.
Patch by arrowdodger!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123445  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-01-14 16:41:03 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oscar Fuentes 
							
						 
					 
					
						
						
							
						
						006bfeba06 
					 
					
						
						
							
							Add some platform tests.  
						
						 
						
						... 
						
						
						
						Patch by arrowdodger!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123388  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-01-13 19:17:28 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oscar Fuentes 
							
						 
					 
					
						
						
							
						
						60b531270b 
					 
					
						
						
							
							Platform tests for argz_* functions.  
						
						 
						
						... 
						
						
						
						Patch by arrowdodger!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123376  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-01-13 15:06:32 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oscar Fuentes 
							
						 
					 
					
						
						
							
						
						19823b19ba 
					 
					
						
						
							
							Add to the CMake build some options and platform tests supported by  
						
						 
						
						... 
						
						
						
						the traditional build.
Patch by arrowdodger!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123233  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-01-11 12:31:54 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oscar Fuentes 
							
						 
					 
					
						
						
							
						
						2c5e0b8b98 
					 
					
						
						
							
							Rewrite handling of LLVM_ENABLE_PIC. It was being processed after  
						
						 
						
						... 
						
						
						
						config.h was generated, so it had no effect on it.
Thanks to arrowdodger for pointing out this and a tentative patch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123119  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2011-01-09 14:34:39 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Michael J. Spencer 
							
						 
					 
					
						
						
							
						
						db04b39dad 
					 
					
						
						
							
							Support/FileSystem: Fix MinGW build. It doesn't have _chsize_s.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120826  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-12-03 18:48:56 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eric Christopher 
							
						 
					 
					
						
						
							
						
						481d402ab0 
					 
					
						
						
							
							Apparently OS X 10.4 doesn't have __crashreporter_info__.  
						
						 
						
						... 
						
						
						
						Try to fix building on the wayback machine.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120801  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-12-03 07:45:22 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Michael J. Spencer 
							
						 
					 
					
						
						
							
						
						fd7c230c85 
					 
					
						
						
							
							Endian: Get rid of LLVM_IS_HOST_BIG_ENDIAN.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117124  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-10-22 18:45:12 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Michael J. Spencer 
							
						 
					 
					
						
						
							
						
						523579e075 
					 
					
						
						
							
							Rename LLVM_IS_TARGET_BIG_ENDIAN to LLVM_IS_HOST_BIG_ENDIAN to reflect what it actually means.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117092  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-10-22 08:47:28 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Michael J. Spencer 
							
						 
					 
					
						
						
							
						
						5e0b2bf657 
					 
					
						
						
							
							Support: Add Endian.h  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117057  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-10-21 20:28:21 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Chandler Carruth 
							
						 
					 
					
						
						
							
						
						6b241160ed 
					 
					
						
						
							
							First step to allowing the resource directory of Clang to be adjusted for  
						
						 
						
						... 
						
						
						
						strange packaging environments. The primary result of this is to expose
a (normally empty) CLANG_RESOURCE_DIR string in the autoconf and CMake builds.
This will in turn be used by a subsequent commit to Clang.
Regenerated configure and config.h.in thanks to Nick. =D
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116802  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-10-19 08:21:25 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dan Gohman 
							
						 
					 
					
						
						
							
						
						48fd5a79e0 
					 
					
						
						
							
							Add support for viewing graphviz graphs with xdot.py.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114832  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-09-27 16:28:34 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dan Gohman 
							
						 
					 
					
						
						
							
						
						3f2f21e640 
					 
					
						
						
							
							Attempt to support platforms which don't have fenv.h.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114196  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-09-17 20:06:27 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eric Christopher 
							
						 
					 
					
						
						
							
						
						753f3265da 
					 
					
						
						
							
							Fix LLVM target initialization to deal with sociopathic outside projects  
						
						 
						
						... 
						
						
						
						that like to randomly define things like "X86", regenerate autoconf bits
and update cmake.
Fixes PR7852.
Patch by Xerxes Rånby!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112499  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-08-30 18:34:48 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eric Christopher 
							
						 
					 
					
						
						
							
						
						0a0073daab 
					 
					
						
						
							
							Regenerate.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112042  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-08-25 08:45:06 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Daniel Dunbar 
							
						 
					 
					
						
						
							
						
						ee0f32d723 
					 
					
						
						
							
							configure: Add detection of the linker version string.  
						
						 
						
						... 
						
						
						
						- Review appreciated, as long as you understand that I understand that this is
   a horrible hack.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110883  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-08-11 23:53:59 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oscar Fuentes 
							
						 
					 
					
						
						
							
						
						0a16b22e64 
					 
					
						
						
							
							Avoid multiple definition warnings when both config.h and  
						
						 
						
						... 
						
						
						
						llvm-config.h are included.
This is the cmake counterpart of r110547. See bug #7809 .
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110753  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-08-10 23:48:22 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eric Christopher 
							
						 
					 
					
						
						
							
						
						d442d2846a 
					 
					
						
						
							
							Add a bit of a hack to avoid multiple defines of variables in  
						
						 
						
						... 
						
						
						
						config.h and llvm-config.h.  This could probably be improved.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110547  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-08-08 09:18:29 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oscar Fuentes 
							
						 
					 
					
						
						
							
						
						652eb506a7 
					 
					
						
						
							
							CMake: set configure macro LLVM_PREFIX  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110536  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-08-08 04:32:21 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oscar Fuentes 
							
						 
					 
					
						
						
							
						
						118eb57d76 
					 
					
						
						
							
							CMake: configure header llvm-config.h  
						
						 
						
						... 
						
						
						
						This is the cmake equivalent of r110532, which fixed bug #7809 .
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110535  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-08-08 04:17:18 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eric Christopher 
							
						 
					 
					
						
						
							
						
						eec5008e77 
					 
					
						
						
							
							Fix PR7809 by creating a header for just llvm variables that can be  
						
						 
						
						... 
						
						
						
						included in exported interfaces.  Update a couple of exported interfaces.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110532  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-08-08 02:44:17 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Daniel Dunbar 
							
						 
					 
					
						
						
							
						
						b1247c313d 
					 
					
						
						
							
							build: Add LLVM_NATIVE_ARCHNAME, which has the sensible value, without "Target"  
						
						 
						
						... 
						
						
						
						appended.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110109  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-08-03 14:26:17 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Owen Anderson 
							
						 
					 
					
						
						
							
						
						009f20a389 
					 
					
						
						
							
							Regenerate.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108738  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-07-19 19:24:55 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eric Christopher 
							
						 
					 
					
						
						
							
						
						4411fbe25e 
					 
					
						
						
							
							Pull in the libCrashReporterClient.a information with a warning comment.  
						
						 
						
						... 
						
						
						
						Remove library check and regenerate configure.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107028  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-06-28 18:25:51 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eric Christopher 
							
						 
					 
					
						
						
							
						
						654dee4875 
					 
					
						
						
							
							Look for and use a different darwin crash reporter library.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106576  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-06-22 21:01:04 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						4c297c9153 
					 
					
						
						
							
							improve portability to systems that don't have round, patch by  
						
						 
						
						... 
						
						
						
						Evzen Muller!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103877  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-05-15 17:11:55 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Daniel Dunbar 
							
						 
					 
					
						
						
							
						
						dd464df687 
					 
					
						
						
							
							Add new configure option, --disable-timestamps, intended to turn off anything which would mess up binary/object comparisons. Currently:  
						
						 
						
						... 
						
						
						
						- Disables 'Built on ...' in 'foo --version'.
 - Disables timestamps from being embedded into .dir files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103423  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-05-10 20:11:56 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eric Christopher 
							
						 
					 
					
						
						
							
						
						e429182c01 
					 
					
						
						
							
							Add a check for posix_spawn.  
						
						 
						
						... 
						
						
						
						Regenerate configure and other autoconf files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101444  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-04-16 05:14:21 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jeffrey Yasskin 
							
						 
					 
					
						
						
							
						
						f28411f732 
					 
					
						
						
							
							Tell Valgrind when we modify already-executed machine code so it knows  
						
						 
						
						... 
						
						
						
						to re-instrument the code.  We depend on the system valgrind.h to
avoid adding a new license.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98529  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-03-15 04:57:55 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jeffrey Yasskin 
							
						 
					 
					
						
						
							
						
						1611ebbbff 
					 
					
						
						
							
							Reconfigure with autoconf-2.60, and fix autoconf.ac to work with that version.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95191  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-02-03 02:11:49 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Torok Edwin 
							
						 
					 
					
						
						
							
						
						871384fcda 
					 
					
						
						
							
							Regenerate configure.  
						
						 
						
						... 
						
						
						
						With the previous cleanup to configure.ac, configure is now only 393k, instead of 1.1M!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94535  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2010-01-26 08:50:50 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Daniel Dunbar 
							
						 
					 
					
						
						
							
						
						fa3f0b9bc2 
					 
					
						
						
							
							Add CMake and configure logic to create llvm/Config/Disassemblers.defs.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89839  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2009-11-25 04:30:13 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Rafael Espindola 
							
						 
					 
					
						
						
							
						
						420d23c3d6 
					 
					
						
						
							
							Add configure options for specifying where to look for libstdc++.  
						
						 
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@88943  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2009-11-16 19:46:55 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Oscar Fuentes 
							
						 
					 
					
						
						
							
						
						8e3c16917c 
					 
					
						
						
							
							CMake: Hopefully unbreak the build by mimicking the changes on the  
						
						 
						
						... 
						
						
						
						other build system about the new C_INCLUDE_DIRS configure option.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86960  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2009-11-12 06:48:09 +00:00