aoh/radamsa

Can it be installed on a raspberry pi ?

meeeo opened this issue · 4 comments

meeeo commented

I tried to make it on a raspberry pi zero w, always failed, is it lack of memory or what, can't it?
Thank you.
img_7390
img_7393

aoh commented

Your C-compiler is indeed running out of memory. You can get around that by temporarily adding more swap space, or by removing radamsa.c and and recompiling it with make OFLAGS=-O1 to make a smaller radamsa.c. You can also make the smaller radamsa.c on another machine, copy it to raspberry and get it running with cc -O2 -o radamsa radamsa.c.

meeeo commented

Thank you, I'll try it later and let you know.

meeeo commented

I made a smaller radamsa.c on pi itself, thank you.
Thank you.
2018-01-31 15 27 37
2018-01-31 15 27 40

aoh commented

Great! Closing as the issue seems to have been resolved.