• Hi,

    I'm trying to get the latest build of Espruino but I'm not able to build from source.

    As README says, I built esp-open-sdk without errors. I also cloned espressif-sdk from https://github.com/espressif/ESP8266_RTO­S_SDK as stated here. As far as I could understand, there is no need to build espressif's SDK.

    Then I used following script to call make:

    #! /bin/bash
    R=/home/ceremcem/embedded
    
    export ESP8266_BOARD=1
    [#export](http://forum.espruino.com/sear­ch/?q=%23export) FLASH_4MB=1
    export ESP8266_SDK_ROOT=${R}/ESP8266_RTOS_SDK
    export PATH=$PATH:${R}/esp-open-sdk/xtensa-lx10­6-elf/bin/
    export COMPORT=/dev/ttyUSB0
    make $*
    

    No success:

    $ ./run-make 
    CC targets/esp8266/user_main.o
    targets/esp8266/user_main.c:17:28: fatal error: user_interface.h: No such file or directory
     [#include](http://forum.espruino.com/sea­rch/?q=%23include) <user_interface.h>
                                ^
    compilation terminated.
    Makefile:1705: recipe for target 'targets/esp8266/user_main.o' failed
    make: *** [targets/esp8266/user_main.o] Error 1
    
About

Avatar for ceremcem @ceremcem started