Unable to compile cr2hdr.

Started by BobbyBonsaimind, August 21, 2018, 11:07:07 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

BobbyBonsaimind

I'm trying to compile cr2hdr (part of the Dual ISO module) under Linux and have been following this guide on how to compile it. The compilation of Magic Lantern itself works, however, all modules fail to compile because they can't find "module_strings.h". I'm sure I'm missing something simple here, can somebody point me to what I'm doing wrong?

Audionut


Danne

cr2hdr has been problematic compiling for a long time. Check this issue compiling for mac:
https://www.magiclantern.fm/forum/index.php?topic=16012.msg195083#msg195083

In short. Change:
HOST_CC=$(shell which gcc)
HOST_LD=$(shell which ld)
HOST_AR=$(shell which ar)

to what´s suggested in above link in file:
Makefile.user.default

BobbyBonsaimind

Thanks for the pointers, turns out that the dependency to python-docutils is not optional but required for the build...interesting.

It now compiles fine, thank you.