Brecht Sanders

Results 20 issues of Brecht Sanders

Ages ago I completely switched from Dev-C++ to Code::Blocks. Most of my projects now use Code::Blocks project and workspace files. I would love to try out RedPanda-CPP, and it would...

enhancement

Will a shared library also be supported? If you remove the `STATIC` argument from `add_library()` in `CMakeLists.txt` then the user can decide to build either a static or shared library...

Fix failing to build when meson is configured with `-Ddirmonitor_backend=

Category: C Core

In the context of true portability I tried to build service-manager with MinGW-w64+GCC (instead of MSVC). It needed some tweaks, but it seems to work. If you would like to...

Fix undeclared `xmlSetGenericErrorFunc` in `coreapi/lpc2xml.c` When building v5.3.58 I got the following compile error: ``` coreapi/lpc2xml.c:299:9: error: 'xmlSetGenericErrorFunc' was not declared in this scope ```

`__declspec(dllimport)` is missing in `chipmunk.h` when defining `CP_EXPORT` This is needed when using the shared library (DLL) on Windows using MinGW-w64.

Create `.dll` shared object file and accompanying `.dll.a` import library. Install files in proper locations.

When trying to build a aarch64-w64-mingw32 build (native on Windows on ARM using this [LLVM/CLang](https://github.com/mstorsjo/llvm-mingw)) with `-DBOOST_CONTEXT_IMPLEMENTATION:STRING=winfib` there the following error occcurs: ```raw undefined symbol: __declspec(dllimport) jump_fcontext ``` This only...

When trying to build a aarch64-w64-mingw32 build (native on Windows on ARM using this [LLVM/CLang](https://github.com/mstorsjo/llvm-mingw)) with `-DBOOST_CONTEXT_IMPLEMENTATION:STRING=fcontext` there are errors that the following files are missing: - `libs/context/src/asm/make_arm64_ms_pe_gas.asm` - `libs/context/src/asm/jump_arm64_ms_pe_gas.asm`...

I built c3c entirely from scratch on Windows using MinGW-w64+GCC (under the MSYS2 shell). But then, when I try to compile a simple C3 test using flags `--cc gcc --linker=custom...