Indan Zupancic
Indan Zupancic
We have multiple options: - Just not support toolchains with mismatching binutils. - Revert those commits. - Add retain only for ldd builds. - Disable link time optimisations. - Add...
> We could probably, in cmake, check for the binutils version and conditionally add `-z nostart-stop-gc` for older versions Considering the problems this gives with gcc, I propose we remove...
> Alternatively we could unwind the previous commit and make the retain keyword conditional of the compiler-linker selection that's known in CMake scope. In the draft PR i just conditioned...
Adding "-fno-lto" should fix Ivan's Clang warning. I think we should disable link time optimisation by default for both clan and gcc. Edit: Created PR #103 that limits retain for...
Is there a way to check the rendered result? I tried downloading the artifact, but that wasn't very useful.
The main problem is that you either have to load all pages (or an index) in one big blob, to have the full context, or you need a server side...
That wouldn't be too bad, loading only on demand with Javascript when people do an actual search. You could then also split up the index into multiple files. That should...
Perhaps changing the order of linking of libraries fixes this?
Now PR #1325 is merged, this problem is reduces as by default all tasks use the FPU (except the idle task). And when configuring people are more likely to disable...
Looking at the code (assuming `USE_KHZ` is false) it does: ```C static inline CONST time_t ticksToUs(ticks_t ticks) { /* simulate 64bit division using multiplication by reciprocal */ return (ticks *...