Open msoos opened 5 years ago
gcc doesn't like functions tagged as inline in both their .h declaration and their .c definition. You can fix by either changing all of march's .c inline function definitions to extern inline:
sed -i 's/inline/extern inline/g' *.c
or just removing all of the inline specifiers (I don't see a performance difference in march with/without):
sed -i 's/inline//g' *.{h,c}
Ah, I see! Sorry, I probably mis-grepped the code then! Marijn -- do you wanna push the change? Or should I just apply this manually to my own code? :)
Hi,
The compilation fails as e.g.
look_fix_binary_implications
seems to be missing. The compilation error is:I couldn't find the definition of
look_fix_binary_implications
. Maybe the relevant source file was accidentally not added to the code?