diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2005-01-02 04:23:12 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2005-01-02 04:23:12 +0000 |
commit | 40296bdf273bebd55899ce3199feba5409b59c27 (patch) | |
tree | bd8bb4a90ff6cc1be5fe61328a81572a6653560d /win32/lli | |
parent | 5aee0b97aa46cb25ccfe157a3a5612d155519b28 (diff) | |
download | external_llvm-40296bdf273bebd55899ce3199feba5409b59c27.zip external_llvm-40296bdf273bebd55899ce3199feba5409b59c27.tar.gz external_llvm-40296bdf273bebd55899ce3199feba5409b59c27.tar.bz2 |
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.vcproj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/lli/lli.vcproj b/win32/lli/lli.vcproj index 0f3127f..0aae82f 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" |