Brecht Sanders

Results 270 comments of Brecht Sanders

Could the slowness be in the console I/O? What happens if you redirect standard output and standard error to the `NUL:` device?

I wouldn't count on it. Eclipse IDE is written in Java which can give all kinds of overhead. Have you actually tried building from the command line (e.g. using a...

I'm sorry to day I have zero experience with Eclipse myself as I simply refuse to install anything written in Java on my machine. I know, I'm biased due to...

@xamidi I just had a look at your [pmGenerator](https://github.com/xamidi/pmGenerator) project. I was able to build it (see recipe [here](https://github.com/brechtsanders/winlibs_recipes/blob/main/recipes/pmgenerator.winlib)), but I got no warnings whatsoever unlike your output (using GCC...

@xamidi somehow I got errors with weeks/years missing when building with g++, but not when building with clang++

@xamidi My codebase has built close to 3000 packages from source, nothing wrong with it. Have you considered using GitHub Actions to build it on different platforms, to see how...

@xamidi If you have a proper Makefile or build system like CMake or Meson in place for your project I'm willing to try it again if you like. About your...

I just built the following releases with optimization flags: - https://github.com/brechtsanders/winlibs_mingw/releases/tag/13.1.0-16.0.5-11.0.0-msvcrt-r5 - https://github.com/brechtsanders/winlibs_mingw/releases/tag/13.1.0-16.0.5-11.0.0-ucrt-r5 Can you check if you see a speed improvement in your scenario?

Good to hear compiler speeds are good again now. As for the linker: ld can't take advantage of multiple cores and is generally slow. LLVM's lld is much better performance-wise....

I release my own build of MinGW-w64 for native Windows at https://winlibs.com/ and have some work in progress on building my own package manager and build system. FYI: The way...