Skip to content

Commit

Permalink
rem - doc - Removed support for 32-bit architectur...
Browse files Browse the repository at this point in the history
...e

---

We need to document the 32-bit processor architecture removal.

---

Type: rem
Breaking: False
Doc Required: True
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Aug 11, 2024
1 parent 899ab88 commit f4a9436
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions SpecProbe.Native/Initializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,11 @@ internal static void InitializeNative()
if (!File.Exists(libDxPath) && PlatformHelper.IsOnWindows())
throw new Exception("Can't load dxhelper library because it isn't found.");
libManager = new LibraryManager(
new LibraryItem(Platform.Windows, Architecture.X86,
new LibraryFile(libPath), new LibraryFile(libDxPath)),
new LibraryItem(Platform.Windows, Architecture.X64,
new LibraryFile(libPath), new LibraryFile(libDxPath)),
new LibraryItem(Platform.MacOS, Architecture.X64,
new LibraryFile(libPath)),
new LibraryItem(Platform.Linux, Architecture.X64,
new LibraryFile(libPath)),
new LibraryItem(Platform.Linux, Architecture.X86,
new LibraryFile(libPath)));
libManager.LoadNativeLibrary();
_initialized = true;
Expand Down
1 change: 0 additions & 1 deletion SpecProbe.Native/SpecProbe.Native.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
<ItemGroup>
<Folder Include="runtimes\osx-x64\native\" />
<Folder Include="runtimes\linux-x64\native\" />
<Folder Include="runtimes\linux-x86\native\" />
<Folder Include="runtimes\win-x64\native\" />
</ItemGroup>

Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit f4a9436

Please sign in to comment.