You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is because the file generated at aotus/external/lua-5.3.5/src/Makefile sets CC to gcc -std=gnu99 and sets the recipes for compiling the files, ignoring whatever was set in setup.make.
aotus has since my last check moved to github (https://github.com/apes-suite/aotus/tree/branch/default). I'll have to update the code shipped in flook, and upgrade smeka to customize details a bit.
Sorry, but this is rather low priority for me as of now.
What can be done right now is cd into aotus/external/lua-5.3.5 and do make CC=... which will actually work.
If you setup
setup.make
with a recipe for.c.o
:You will notice that lua compilation ignores this recipe and
CC
and instead compiles withgcc
and some flags that you have not set.This is because the file generated at
aotus/external/lua-5.3.5/src/Makefile
setsCC
togcc -std=gnu99
and sets the recipes for compiling the files, ignoring whatever was set insetup.make
.Found in conda-forge/siesta-feedstock#50
The text was updated successfully, but these errors were encountered: