[cpp-sp] branch main updated: Add Arm64 projects to NativeLogMessages project
Rod Widdowson
rdw at steadingsoftware.com
Mon Oct 20 18:38:50 UTC 2025
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch main
in repository cpp-sp.
View the commit online:
http://git.shibboleth.net/view/?p=cpp-sp.git;a=commit;h=d8102c20ef15834e0779f03a54ad6a8da1a7209c
The following commit(s) were added to refs/heads/main by this push:
new d8102c20 Add Arm64 projects to NativeLogMessages project
d8102c20 is described below
commit d8102c20ef15834e0779f03a54ad6a8da1a7209c
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Mon Oct 20 19:38:22 2025 +0100
Add Arm64 projects to NativeLogMessages project
---
Projects/vc22/NativeLogMessages.vcxproj | 69 ++++++++++++++++++++++++++++++++-
Projects/vc22/Shibboleth.sln | 8 ++--
2 files changed, 72 insertions(+), 5 deletions(-)
diff --git a/Projects/vc22/NativeLogMessages.vcxproj b/Projects/vc22/NativeLogMessages.vcxproj
index 114d72d4..59e39d98 100644
--- a/Projects/vc22/NativeLogMessages.vcxproj
+++ b/Projects/vc22/NativeLogMessages.vcxproj
@@ -1,10 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
+ <ProjectConfiguration Include="Debug|ARM64">
+ <Configuration>Debug</Configuration>
+ <Platform>ARM64</Platform>
+ </ProjectConfiguration>
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
+ <ProjectConfiguration Include="Release|ARM64">
+ <Configuration>Release</Configuration>
+ <Platform>ARM64</Platform>
+ </ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
@@ -45,6 +53,12 @@
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ <PlatformToolset>v143</PlatformToolset>
+ <CharacterSet>MultiByte</CharacterSet>
+ </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
@@ -52,6 +66,13 @@
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <PlatformToolset>v143</PlatformToolset>
+ <WholeProgramOptimization>true</WholeProgramOptimization>
+ <CharacterSet>MultiByte</CharacterSet>
+ </PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
@@ -66,9 +87,15 @@
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="PropertySheets">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="PropertySheets">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<GenerateManifest>false</GenerateManifest>
@@ -79,9 +106,15 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<GenerateManifest>false</GenerateManifest>
</PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
+ <GenerateManifest>false</GenerateManifest>
+ </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<GenerateManifest>false</GenerateManifest>
</PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
+ <GenerateManifest>false</GenerateManifest>
+ </PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
@@ -104,6 +137,17 @@
<NoEntryPoint>true</NoEntryPoint>
</Link>
</ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <Optimization>Disabled</Optimization>
+ <SDLCheck>true</SDLCheck>
+ </ClCompile>
+ <Link>
+ <AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
+ <NoEntryPoint>true</NoEntryPoint>
+ </Link>
+ </ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
@@ -134,6 +178,21 @@
<NoEntryPoint>true</NoEntryPoint>
</Link>
</ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <Optimization>MaxSpeed</Optimization>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ <SDLCheck>true</SDLCheck>
+ </ClCompile>
+ <Link>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ <AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
+ <NoEntryPoint>true</NoEntryPoint>
+ </Link>
+ </ItemDefinitionGroup>
<ItemGroup>
<CustomBuild Include="..\..\shibsp\logging\impl\NativeEventLog.mc">
<FileType>Document</FileType>
@@ -145,14 +204,22 @@ mc.exe -h $(OutDir) -r $(OutDir) $(ProjectDir)..\..\shibsp\logging\impl\%(Filena
</Command>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">if not exist $(OutDir) md $(OutDir)
mc.exe -h $(OutDir) -r $(OutDir) $(ProjectDir)..\..\shibsp\logging\impl\%(Filename).mc
+</Command>
+ <Command Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">if not exist $(OutDir) md $(OutDir)
+mc.exe -h $(OutDir) -r $(OutDir) $(ProjectDir)..\..\shibsp\logging\impl\%(Filename).mc
</Command>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">if not exist $(OutDir) md $(OutDir)
mc.exe -h $(OutDir) -r $(OutDir) $(ProjectDir)..\..\shibsp\logging\impl\%(Filename).mc
+</Command>
+ <Command Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">if not exist $(OutDir) md $(OutDir)
+mc.exe -h $(OutDir) -r $(OutDir) $(ProjectDir)..\..\shibsp\logging\impl\%(Filename).mc
</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(OutDir)%(Filename).rc</Outputs>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(OutDir)%(Filename).rc</Outputs>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(OutDir)%(Filename).rc</Outputs>
+ <Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">$(OutDir)%(Filename).rc</Outputs>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(OutDir)%(Filename).rc</Outputs>
+ <Outputs Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">$(OutDir)%(Filename).rc</Outputs>
</CustomBuild>
</ItemGroup>
<ItemGroup>
@@ -161,4 +228,4 @@ mc.exe -h $(OutDir) -r $(OutDir) $(ProjectDir)..\..\shibsp\logging\impl\%(Filena
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
-</Project>
+</Project>
\ No newline at end of file
diff --git a/Projects/vc22/Shibboleth.sln b/Projects/vc22/Shibboleth.sln
index 56c4b2bf..c2ef7266 100644
--- a/Projects/vc22/Shibboleth.sln
+++ b/Projects/vc22/Shibboleth.sln
@@ -81,14 +81,14 @@ Global
{3F4D8EC2-FAFF-493D-AC2C-841CA533F037}.Release|x64.Build.0 = Release|x64
{3F4D8EC2-FAFF-493D-AC2C-841CA533F037}.Release|x86.ActiveCfg = Release|Win32
{3F4D8EC2-FAFF-493D-AC2C-841CA533F037}.Release|x86.Build.0 = Release|Win32
- {22BBF106-8ADC-4E97-A5DE-F9C725B64940}.Debug|ARM64.ActiveCfg = Debug|x64
- {22BBF106-8ADC-4E97-A5DE-F9C725B64940}.Debug|ARM64.Build.0 = Debug|x64
+ {22BBF106-8ADC-4E97-A5DE-F9C725B64940}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {22BBF106-8ADC-4E97-A5DE-F9C725B64940}.Debug|ARM64.Build.0 = Debug|ARM64
{22BBF106-8ADC-4E97-A5DE-F9C725B64940}.Debug|x64.ActiveCfg = Debug|x64
{22BBF106-8ADC-4E97-A5DE-F9C725B64940}.Debug|x64.Build.0 = Debug|x64
{22BBF106-8ADC-4E97-A5DE-F9C725B64940}.Debug|x86.ActiveCfg = Debug|Win32
{22BBF106-8ADC-4E97-A5DE-F9C725B64940}.Debug|x86.Build.0 = Debug|Win32
- {22BBF106-8ADC-4E97-A5DE-F9C725B64940}.Release|ARM64.ActiveCfg = Release|x64
- {22BBF106-8ADC-4E97-A5DE-F9C725B64940}.Release|ARM64.Build.0 = Release|x64
+ {22BBF106-8ADC-4E97-A5DE-F9C725B64940}.Release|ARM64.ActiveCfg = Release|ARM64
+ {22BBF106-8ADC-4E97-A5DE-F9C725B64940}.Release|ARM64.Build.0 = Release|ARM64
{22BBF106-8ADC-4E97-A5DE-F9C725B64940}.Release|x64.ActiveCfg = Release|x64
{22BBF106-8ADC-4E97-A5DE-F9C725B64940}.Release|x64.Build.0 = Release|x64
{22BBF106-8ADC-4E97-A5DE-F9C725B64940}.Release|x86.ActiveCfg = Release|Win32
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list