diff options
| author | a1xd <[email protected]> | 2021-04-08 02:30:01 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-04-08 02:30:01 -0400 |
| commit | c55d1bfd01147fa014ac07d4b03ef3cad8427ae6 (patch) | |
| tree | 39ffa4a79bc6b019443521f10203f787c4b98698 /driver/driver.vcxproj | |
| parent | unmark fill as const (diff) | |
| download | rawaccel-c55d1bfd01147fa014ac07d4b03ef3cad8427ae6.tar.xz rawaccel-c55d1bfd01147fa014ac07d4b03ef3cad8427ae6.zip | |
optimize a bit/refactor modify
Diffstat (limited to 'driver/driver.vcxproj')
| -rw-r--r-- | driver/driver.vcxproj | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/driver/driver.vcxproj b/driver/driver.vcxproj index 9034680..c2e4629 100644 --- a/driver/driver.vcxproj +++ b/driver/driver.vcxproj @@ -30,6 +30,7 @@ <ConfigurationType>Driver</ConfigurationType> <OverrideDefaultRuntimeLibrary>true</OverrideDefaultRuntimeLibrary> <SpectreMitigation>Spectre</SpectreMitigation> + <Driver_SpectreMitigation>Spectre</Driver_SpectreMitigation> </PropertyGroup> <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <TargetVersion>Windows7</TargetVersion> @@ -38,6 +39,7 @@ <DriverType>KMDF</DriverType> <PlatformToolset>WindowsKernelModeDriver10.0</PlatformToolset> <ConfigurationType>Driver</ConfigurationType> + <Driver_SpectreMitigation>Spectre</Driver_SpectreMitigation> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <PropertyGroup> @@ -74,18 +76,18 @@ </RuntimeLibrary> <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> <CallingConvention>StdCall</CallingConvention> - <AssemblerOutput>AssemblyAndSourceCode</AssemblerOutput> + <AssemblerOutput>AssemblyCode</AssemblerOutput> <ExpandAttributedSource>false</ExpandAttributedSource> <UseUnicodeForAssemblerListing>false</UseUnicodeForAssemblerListing> <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> <Optimization>MaxSpeed</Optimization> <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion> <IntrinsicFunctions>true</IntrinsicFunctions> - <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed> + <FavorSizeOrSpeed>Neither</FavorSizeOrSpeed> <WholeProgramOptimization>false</WholeProgramOptimization> <BufferSecurityCheck>true</BufferSecurityCheck> <ControlFlowGuard>Guard</ControlFlowGuard> - <FloatingPointModel>Precise</FloatingPointModel> + <FloatingPointModel>Fast</FloatingPointModel> </ClCompile> <Link> <LinkTimeCodeGeneration> @@ -114,9 +116,11 @@ <RuntimeLibrary> </RuntimeLibrary> <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> - <FloatingPointModel>Precise</FloatingPointModel> + <FloatingPointModel>Fast</FloatingPointModel> <CallingConvention>StdCall</CallingConvention> <Optimization>MaxSpeed</Optimization> + <ControlFlowGuard>Guard</ControlFlowGuard> + <BufferSecurityCheck>true</BufferSecurityCheck> </ClCompile> <Link> <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> |