summaryrefslogtreecommitdiff
path: root/win32/lli
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2005-01-02 04:23:12 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2005-01-02 04:23:12 +0000
commit40296bdf273bebd55899ce3199feba5409b59c27 (patch)
treebd8bb4a90ff6cc1be5fe61328a81572a6653560d /win32/lli
parent5aee0b97aa46cb25ccfe157a3a5612d155519b28 (diff)
downloadllvm-40296bdf273bebd55899ce3199feba5409b59c27.tar.gz
llvm-40296bdf273bebd55899ce3199feba5409b59c27.tar.bz2
llvm-40296bdf273bebd55899ce3199feba5409b59c27.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19252 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'win32/lli')
-rw-r--r--win32/lli/lli.vcproj4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/lli/lli.vcproj b/win32/lli/lli.vcproj
index 0f3127f91f..0aae82f72b 100644
--- a/win32/lli/lli.vcproj
+++ b/win32/lli/lli.vcproj
@@ -36,9 +36,9 @@
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
+ AdditionalDependencies="$(SolutionDir)X86\$(IntDir)\X86TargetMachine.obj"
OutputFile="$(OutDir)/lli.exe"
LinkIncremental="2"
- ForceSymbolReferences="_X86TargetMachineModule"
GenerateDebugInformation="TRUE"
ProgramDatabaseFile="$(OutDir)/lli.pdb"
SubSystem="1"
@@ -87,9 +87,9 @@
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
+ AdditionalDependencies="$(SolutionDir)X86\$(IntDir)\X86TargetMachine.obj"
OutputFile="$(OutDir)/lli.exe"
LinkIncremental="1"
- ForceSymbolReferences="_X86TargetMachineModule"
GenerateDebugInformation="TRUE"
SubSystem="1"
OptimizeReferences="2"