libopenmpt 0.7.11+release
cross-platform C++ and C library to decode tracked music files
|
Microsoft Visual Studio 2019 or higher, running on a amd64 build system (other target systems are supported)
Please note that we do not support building with a later Visual Studio installation with an earlier compiler version. This is because, while later Visual Studio versions allow installing earlier compilers to be available via the later version's environment, in this configuration, the earlier compiler will still use the later C and C++ runtime's headers and implementation, which significantly increases the matrix of possible configurations to test.
any other C++20 or C++17 compliant compiler
libopenmpt makes the following assumptions about the C++ implementation used for building:
std::numeric_limits<unsigned char>::digits == 8
(enforced by static_assert)std::uintptr_t
(enforced by static_assert)std::endian::little != std::endian::big
(enforced by static_assert)wchar_t
encoding is either UTF-16 or UTF-32 (implicitly assumed)wchar_t
(implicitly assumed)libopenmpt does not rely on any specific implementation defined or undefined behaviour (if it does, that's a bug in libopenmpt). In particular:
char
can be signed
or unsigned
signed
integer overflow is undefinedfloat
and double
can be non-IEEE754libopenmpt can optionally support certain incomplete C++ implementations:
wchar_t
support (like DJGPP)std::random_device
(like Emscripten when running in AudioWorkletProcessor
context)std::high_resolution_clock
(like Emscripten when running in AudioWorkletProcessor
context)Building the source packages additionally requires: