mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	Silenced some VC warnings. I'm getting linker errors, though: unresolved externals: llvm::Split<class llvm::BasicBlock *,struct llvm::GraphTraits<class llvm::BasicBlock *> >(class llvm::DominatorTreeBase<class llvm::BasicBlock> &,class llvm::BasicBlock *) and llvm::Split<struct llvm::Inverse<class llvm::BasicBlock *>,struct llvm::GraphTraits<struct llvm::Inverse<class llvm::BasicBlock *> > >(class llvm::DominatorTreeBase<class llvm::BasicBlock> &,class llvm::BasicBlock *) Where are these defined? git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43073 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			28 lines
		
	
	
		
			680 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			680 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* This file is appended to config.h.in to form the Windows version of
 | 
						|
 * config.h */
 | 
						|
 | 
						|
#define PACKAGE_NAME "LLVM (win32 vc8.0)" 
 | 
						|
#define PACKAGE_VERSION 2.1
 | 
						|
#define HAVE_WINDOWS_H 1 
 | 
						|
#define HAVE_LIMITS_H 1 
 | 
						|
#define HAVE_SYS_STAT_H 1 
 | 
						|
#define HAVE_STDLIB_H 1 
 | 
						|
#define HAVE_STDIO_H 1 
 | 
						|
#define HAVE_STRING_H 1 
 | 
						|
#define HAVE_CEILF 1 
 | 
						|
#define HAVE_FLOORF 1 
 | 
						|
#define SHLIBEXT ".lib" 
 | 
						|
#define error_t int 
 | 
						|
#define HAVE_ERRNO_H 1 
 | 
						|
#define LTDL_DLOPEN_DEPLIBS 1 
 | 
						|
#define LTDL_OBJDIR "_libs" 
 | 
						|
#define LTDL_SHLIBPATH_VAR "PATH" 
 | 
						|
#define LTDL_SHLIB_EXT ".dll" 
 | 
						|
#define LTDL_SYSSEARCHPATH "" 
 | 
						|
#define LLVM_ON_WIN32 1 
 | 
						|
 | 
						|
#define strtoll strtol
 | 
						|
#define stricmp _stricmp
 | 
						|
#define strdup _strdup
 | 
						|
 |