I've followed the instructions here.. https://github.com/pfalcon/esp-open-sdk
changed my paths
but i get this error. I can build the examples just fine, as well as node-mcu?
andrew@ubuntu-testbed:~/esphttpd$ make
CC user/auth.c
In file included from /home/andrew/esp-open-sdk/xtensa-lx106-elf/xtensa-lx106-elf/sysroot/usr/include/os_type.h:10:0,
from /home/andrew/esp-open-sdk/xtensa-lx106-elf/xtensa-lx106-elf/sysroot/usr/include/user_interface.h:9,
from user/auth.c:17:
/home/andrew/esp-open-sdk/xtensa-lx106-elf/xtensa-lx106-elf/sysroot/usr/include/ets_sys.h:11:9: error: expected '=', ',', ';', 'asm' or '__attribute__' before string constant
include "c_types.h"
^
In file included from /home/andrew/esp-open-sdk/xtensa-lx106-elf/xtensa-lx106-elf/sysroot/usr/include/os_type.h:10:0,
from /home/andrew/esp-open-sdk/xtensa-lx106-elf/xtensa-lx106-elf/sysroot/usr/include/user_interface.h:9,
from user/auth.c:17:
/home/andrew/esp-open-sdk/xtensa-lx106-elf/xtensa-lx106-elf/sysroot/usr/include/ets_sys.h:15:1: error: unknown type name 'uint32_t'
typedef uint32_t ETSParam;
^
/home/andrew/esp-open-sdk/xtensa-lx106-elf/xtensa-lx106-elf/sysroot/usr/include/ets_sys.h:20:5: error: unknown type name 'ETSSignal'
ETSSignal sig;
^
/home/andrew/esp-open-sdk/xtensa-lx106-elf/xtensa-lx106-elf/sysroot/usr/include/ets_sys.h:27:1: error: unknown type name 'uint32_t'
typedef uint32_t ETSHandle;
^
/home/andrew/esp-open-sdk/xtensa-lx106-elf/xtensa-lx106-elf/sysroot/usr/include/ets_sys.h:32:5: error: unknown type name 'uint32_t'
uint32_t timer_expire;
^
/home/andrew/esp-open-sdk/xtensa-lx106-elf/xtensa-lx106-elf/sysroot/usr/include/ets_sys.h:33:5: error: unknown type name 'uint32_t'
uint32_t timer_period;
^
In file included from /home/andrew/esp-open-sdk/xtensa-lx106-elf/xtensa-lx106-elf/sysroot/usr/include/user_interface.h:9:0,
from user/auth.c:17:
/home/andrew/esp-open-sdk/xtensa-lx106-elf/xtensa-lx106-elf/sysroot/usr/include/user_interface.h:67:33: error: unknown type name 'ETSSignal'
bool system_os_post(uint8 prio, os_signal_t sig, os_param_t par);