[llvm-commits] CVS: llvm/win32/llc/llc.vcproj

Jeff Cohen jeffc at jolt-lang.org
Sat Jan 1 20:23:24 PST 2005



Changes in directory llvm/win32/llc:

llc.vcproj updated: 1.4 -> 1.5
---
Log message:

Eliminate the use of the global variable hack in the X86 target that was used
to get Visual Studio to link in X86.lib to the executables that need it.  There
is another way of doing it.

---
Diffs of the changes:  (+2 -2)

Index: llvm/win32/llc/llc.vcproj
diff -u llvm/win32/llc/llc.vcproj:1.4 llvm/win32/llc/llc.vcproj:1.5
--- llvm/win32/llc/llc.vcproj:1.4	Sat Jan  1 14:51:41 2005
+++ llvm/win32/llc/llc.vcproj	Sat Jan  1 22:23:12 2005
@@ -36,9 +36,9 @@
 				Name="VCCustomBuildTool"/>
 			<Tool
 				Name="VCLinkerTool"
+				AdditionalDependencies="$(SolutionDir)X86\$(IntDir)\X86TargetMachine.obj"
 				OutputFile="$(OutDir)/llc.exe"
 				LinkIncremental="2"
-				ForceSymbolReferences="_X86TargetMachineModule"
 				GenerateDebugInformation="TRUE"
 				ProgramDatabaseFile="$(OutDir)/llc.pdb"
 				SubSystem="1"
@@ -87,9 +87,9 @@
 				Name="VCCustomBuildTool"/>
 			<Tool
 				Name="VCLinkerTool"
+				AdditionalDependencies="$(SolutionDir)X86\$(IntDir)\X86TargetMachine.obj"
 				OutputFile="$(OutDir)/llc.exe"
 				LinkIncremental="1"
-				ForceSymbolReferences="_X86TargetMachineModule"
 				GenerateDebugInformation="TRUE"
 				SubSystem="1"
 				OptimizeReferences="2"






More information about the llvm-commits mailing list