diff options
| author | Tim Foley <tim.foley.is@gmail.com> | 2017-09-25 11:27:54 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-25 11:27:54 -0700 |
| commit | b6cf0f4ae0f3f9d1f377d3f134dcf994676e68b4 (patch) | |
| tree | bcc781497b36664cbebe10d91f888be674c82f8b /examples/hello | |
| parent | b206af702cbc8cc42c73052ad690d69984ecd7b7 (diff) | |
| parent | 0aa440a22ab18bc4a9077fcf17966ed4949d684b (diff) | |
Merge pull request #191 from tfoleyNV/ir-work
More work on IR-based lowering and cross-compilation
Diffstat (limited to 'examples/hello')
| -rw-r--r-- | examples/hello/hello.vcxproj | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/hello/hello.vcxproj b/examples/hello/hello.vcxproj index 365d74164..635cf985a 100644 --- a/examples/hello/hello.vcxproj +++ b/examples/hello/hello.vcxproj @@ -96,6 +96,7 @@ <WarningLevel>Level3</WarningLevel> <Optimization>Disabled</Optimization> <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <AdditionalOptions>/bigobj %(AdditionalOptions)</AdditionalOptions> </ClCompile> <Link> <SubSystem>Windows</SubSystem> @@ -109,6 +110,7 @@ <WarningLevel>Level3</WarningLevel> <Optimization>Disabled</Optimization> <PreprocessorDefinitions>_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <AdditionalOptions>/bigobj %(AdditionalOptions)</AdditionalOptions> </ClCompile> <Link> <SubSystem>Windows</SubSystem> @@ -124,6 +126,7 @@ <FunctionLevelLinking>true</FunctionLevelLinking> <IntrinsicFunctions>true</IntrinsicFunctions> <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <AdditionalOptions>/bigobj %(AdditionalOptions)</AdditionalOptions> </ClCompile> <Link> <SubSystem>Windows</SubSystem> @@ -141,6 +144,7 @@ <FunctionLevelLinking>true</FunctionLevelLinking> <IntrinsicFunctions>true</IntrinsicFunctions> <PreprocessorDefinitions>NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <AdditionalOptions>/bigobj %(AdditionalOptions)</AdditionalOptions> </ClCompile> <Link> <SubSystem>Windows</SubSystem> |
