Skip to content

Commit

Permalink
rem - 32-bit i386 and ARM32 no longer supported
Browse files Browse the repository at this point in the history
---

We've decided to remove all support for 32-bit architectures to follow our official decision regarding 32-bit support.

---

Type: rem
Breaking: False
Doc Required: False
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Aug 10, 2024
1 parent c260c44 commit e6f6e02
Show file tree
Hide file tree
Showing 27 changed files with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions BassBoom.Native/MpgNative.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,33 +124,23 @@ internal static void InitializeLibrary(string libPath, string libPathOut, string

// Start the libraries up
libManagerMpg = new LibraryManager(
new LibraryItem(Platform.Windows, Architecture.X86, new LibraryFile(mpg123LibPath)),
new LibraryItem(Platform.Windows, Architecture.X64, new LibraryFile(mpg123LibPath)),
new LibraryItem(Platform.Windows, Architecture.Arm, new LibraryFile(mpg123LibPath)),
new LibraryItem(Platform.Windows, Architecture.Arm64, new LibraryFile(mpg123LibPath)),
new LibraryItem(Platform.MacOS, Architecture.X64, new LibraryFile(mpg123LibPath)),
new LibraryItem(Platform.MacOS, Architecture.Arm64, new LibraryFile(mpg123LibPath)),
new LibraryItem(Platform.Linux, Architecture.X64, new LibraryFile(mpg123LibPath)),
new LibraryItem(Platform.Linux, Architecture.X86, new LibraryFile(mpg123LibPath)),
new LibraryItem(Platform.Linux, Architecture.Arm, new LibraryFile(mpg123LibPath)),
new LibraryItem(Platform.Linux, Architecture.Arm64, new LibraryFile(mpg123LibPath)));
libManagerOut = new LibraryManager(
new LibraryItem(Platform.Windows, Architecture.X86, new LibraryFile(out123LibPath)),
new LibraryItem(Platform.Windows, Architecture.X64, new LibraryFile(out123LibPath)),
new LibraryItem(Platform.Windows, Architecture.Arm, new LibraryFile(out123LibPath)),
new LibraryItem(Platform.Windows, Architecture.Arm64, new LibraryFile(out123LibPath)),
new LibraryItem(Platform.MacOS, Architecture.X64, new LibraryFile(out123LibPath)),
new LibraryItem(Platform.MacOS, Architecture.Arm64, new LibraryFile(out123LibPath)),
new LibraryItem(Platform.Linux, Architecture.X64, new LibraryFile(out123LibPath)),
new LibraryItem(Platform.Linux, Architecture.X86, new LibraryFile(out123LibPath)),
new LibraryItem(Platform.Linux, Architecture.Arm, new LibraryFile(out123LibPath)),
new LibraryItem(Platform.Linux, Architecture.Arm64, new LibraryFile(out123LibPath)));
if (PlatformHelper.IsOnWindows())
{
var libManagerWinpthread = new LibraryManager(
new LibraryItem(Platform.Windows, Architecture.X86, new LibraryFile(winpthreadsLibPath)),
new LibraryItem(Platform.Windows, Architecture.X64, new LibraryFile(winpthreadsLibPath)),
new LibraryItem(Platform.Windows, Architecture.Arm, new LibraryFile(winpthreadsLibPath)),
new LibraryItem(Platform.Windows, Architecture.Arm64, new LibraryFile(winpthreadsLibPath)));
libManagerWinpthread.LoadNativeLibrary();
}
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed BassBoom.Native/runtimes/win-x86/native/mpg123.dll
Binary file not shown.
Binary file removed BassBoom.Native/runtimes/win-x86/native/out123.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit e6f6e02

Please sign in to comment.