How hard is it to upload the source on github that compiles without a million errors?
eu1:/home/fuelcoinwallet# git clone https://github.com/FuelCoinDev/FuelCoinCode.git
Cloning into 'FuelCoinCode'...
remote: Counting objects: 615, done.
remote: Total 615 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (615/615), 6.83 MiB | 1.50 MiB/s, done.
Resolving deltas: 100% (77/77), done.
Checking connectivity... done
eu1:/home/fuelcoinwallet# cd FuelCoinCode/src/
root@eu1:/home/fuelcoinwallet/FuelCoinCode/src# make -j2 -f makefile.unix
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/home/fuelcoinwallet/FuelCoinCode/src -I/home/fuelcoinwallet/FuelCoinCode/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -I/home/fuelcoinwallet/FuelCoinCode/src/leveldb/include -I/home/fuelcoinwallet/FuelCoinCode/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
Building LevelDB ...
/bin/sh: 1: ./build_detect_platform: Permission denied
make[1]: Entering directory `/home/fuelcoinwallet/FuelCoinCode/src/leveldb'
Makefile:18: build_config.mk: No such file or directory
make[1]: *** No rule to make target `build_config.mk'. Stop.
make[1]: Leaving directory `/home/fuelcoinwallet/FuelCoinCode/src/leveldb'
make: *** [leveldb/libleveldb.a] Error 2
make: *** Waiting for unfinished jobs....
eu1:/home/fuelcoinwallet/FuelCoinCode/src# chmod +x leveldb/build_detect_platform
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/home/fuelcoinwallet/FuelCoinCode/src -I/home/fuelcoinwallet/FuelCoinCode/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -I/home/fuelcoinwallet/FuelCoinCode/src/leveldb/include -I/home/fuelcoinwallet/FuelCoinCode/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
Building LevelDB ...
find: `.//util': No such file or directory
find: `.//table': No such file or directory
make[1]: Entering directory `/home/fuelcoinwallet/FuelCoinCode/src/leveldb'
g++ -I. -I./include -fno-builtin-memcmp -pthread -DOS_LINUX -DLEVELDB_PLATFORM_POSIX -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/home/fuelcoinwallet/FuelCoinCode/src -I/home/fuelcoinwallet/FuelCoinCode/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -I/home/fuelcoinwallet/FuelCoinCode/src/leveldb/include -I/home/fuelcoinwallet/FuelCoinCode/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -c db/builder.cc -o db/builder.o
In file included from db/builder.cc:5:0:
./db/builder.h:8:28: fatal error: leveldb/status.h: No such file or directory
#include "leveldb/status.h"
^
compilation terminated.
make[1]: *** [db/builder.o] Error 1
make[1]: Leaving directory `/home/fuelcoinwallet/FuelCoinCode/src/leveldb'
make: *** [leveldb/libleveldb.a] Error 2
make: *** Waiting for unfinished jobs....
alert.cpp:260:1: fatal error: opening dependency file obj/alert.d: No such file or directory
}
^
compilation terminated.
make: *** [obj/alert.o] Error 1
root@eu1:/home/fuelcoinwallet/FuelCoinCode/src#
Okay where is the util and the table directory in leveldb?
Where is the status.h file?