Alexander Grund
Alexander Grund
> If the LineageOS folks would be willing to supply that Not sure how to request that and it even applies to e.g. HavocOs and more (I think). So maybe...
@nasbdh9 Sorry for getting back so late. I just tried 10-7029319 (using LOS 17.1, Android 10) and that worked.
I found the related PR https://github.com/numpy/numpy/pull/16214 where @seberg even wrote: > Probably broken for all double-double I tested the `bad_arcsin` on our PPC system and there it succeeded, although the...
This is still an issue (numpy 1.22.3)
> Most of parts must be enforced with C++98 to be sure code will be built on older compilers Then this is a bug: https://github.com/Wohlstand/libADLMIDI/blob/d89084d6eaf3bb65c134201f61449656226cbf80/CMakeLists.txt#L118 > Also, libSDL's CMake build...
> As I remember, in some cases it doesn't appears properly, therefore I defining it manually to avoud possible ussue for a case of lack of it. AFAIK only when...
@jpcima I highly support this. AFAIK my changes did not introduce those and I didn't want to change something for which there might be a reason. But yes linking to...
I'm pretty sure CMake is able to handle this. For example for imported libraries you can set https://cmake.org/cmake/help/v3.0/prop_tgt/IMPORTED_LINK_INTERFACE_LANGUAGES.html to explicitly tell which linker (link language) to use. For CMake targets...
> The variable SDL2_LIBRARIES is empty, and the error is: string sub-command STRIP requires two arguments. (on the line 2 the variable surely needs quoting but it's not the point)...
Wow, nice. Didn't know SDL2 actually installs the exported targets now and that it even builds with CMake. Well simple solution then: Change https://github.com/Wohlstand/libADLMIDI/blob/25c48a996ae22d226a4469340c01b1724b398fae/utils/midiplay/CMakeLists.txt#L7-L8 to: ``` if(TARGET SDL2::SDL2) target_link_libraries(adlmidiplay PRIVATE...