Unable to compile mpy-cross on x86_64. #9521
-
A few days ago, I installed Debian on an old machine I had laying around. I set it up, then decided to install IDF 4.4.2 on it last night. I also cloned micropython (if you clone it with
Output of
I've compiled micropython before with minimal issues on a Raspberry Pi. Unless something changed that I'm not aware of, then I probably cloned the repository wrong. Could somebody give me a pointer in the right direction please? It would be very helpful, as I cannot continue development of my system without compiling in C modules and frozen .mpy modules without compiling the source. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
These are all standard C include files, not especially related to MicroPython. Looks like these are not installed. Did you run:
as mentioned e.g. in the MP readme for the unix port. |
Beta Was this translation helpful? Give feedback.
-
You should install the build-essential from the same source as the gcc compiler. |
Beta Was this translation helpful? Give feedback.
These are all standard C include files, not especially related to MicroPython. Looks like these are not installed. Did you run:
sudo apt-get build-essential
as mentioned e.g. in the MP readme for the unix port.