Albin Ahlbäck
Albin Ahlbäck
And I just want to make it clear that I will not merge something that does not superset-ish what Autotools currently does. I know this is somewhat of a big...
Timings are looking very good. I think we can afford a small drop in a one-time build while we gain a lot in rebuilds! Thank you for looking into this.
Regarding the wrong assembly linking: Is this with Autotools or is this with Meson?
Oh, I see. If it is with Meson then it should be expected (unless you have gotten that far already).
We (= me = Albin) use M4 to make writing assembly a little bit easier. One such things is making the assembler write the correct symbol. MacOS typically prefix their...
So if you write `int foo(void)` in C, the generated symbol on some systems will actually be `_foo` and not `foo`.
There are a couple of other things that is needed to be able to write assembly, but I will try to write a list of what the whole Autotools process...
Note that I will herein only describe the process for Autotools. Any local functions used in `configure.ac` can be found in `acinclude.m4`. Remember that stuff in `configure.ac` and `acinclude.m4` is...
# Things to consider when replacing `Makefile` 1. We want to be able to compile with specific CFLAGS for certain modules. Unrolling of loops should be made for those listed...
I don't think I missed anything, but of course I left some (more or less obvious) things unsaid. Let me know if there is something that needs to be explained...