rohanrhu / gdb-frontend-live

GDBFrontendLive is a server that creates GDBFrontend instances and provides online sharable IDEs for each individiual users. 🛸👽🌌

Home Page:https://debugme.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fatal error: ../lib/jsonic/jsonic.h: No such file or directory

Tiang-88 opened this issue · comments

---> 839d75657c14
Step 10/11 : RUN make
---> Running in 630666d5e52a
mkdir -p dist/
gcc -c -o dist/uniqid.o src/uniqid.c -std=c99 -fcommon -I. -g -luuid -lssl -lcrypto -lpthread -lm
gcc -c -o dist/instance.o src/instance.c -std=c99 -fcommon -I. -g -luuid -lssl -lcrypto -lpthread -lm
gcc -c -o dist/arg.o src/arg.c -std=c99 -fcommon -I. -g -luuid -lssl -lcrypto -lpthread -lm
gcc -c -o dist/util.o src/util.c -std=c99 -fcommon -I. -g -luuid -lssl -lcrypto -lpthread -lm
gcc -c -o dist/websocket.o src/websocket.c -std=c99 -fcommon -I. -g -luuid -lssl -lcrypto -lpthread -lm
src/websocket.c:27:10: fatal error: ../lib/jsonic/jsonic.h: No such file or directory
#include "../lib/jsonic/jsonic.h"
^~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make: *** [Makefile:57: dist/websocket.o] Error 1
The command '/bin/sh -c make' returned a non-zero code: 2

Oh I guess you haven't cloned the repo with submodules.

You should clone the Git repo with --recursive:

git clone --recursive https://github.com/rohanrhu/gdb-frontend-live.git

Oh I guess you haven't cloned the repo with submodules.

You should clone the Git repo with --recursive:

git clone --recursive https://github.com/rohanrhu/gdb-frontend-live.git

Thank you so much