GZR0 / GRZ0

GRAVITY Z. COIN
https://gzro.net/
MIT License
10 stars 8 forks source link

build_detect_platform should be executable #7

Closed kkoenen closed 5 years ago

kkoenen commented 5 years ago

The file ./src/leveldb/build_detect_platform should have +x permissions.

Before setting executable permission:

    make[1]: Entering directory '/home/kkoenen/bin/GRZ0/src/leveldb'
    /bin/sh: 1: ./build_detect_platform: Permission denied
    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/kkoenen/bin/GRZ0/src/leveldb'

After setting executable permission:

    Building LevelDB ...
    make[1]: Entering directory '/home/kkoenen/bin/GRZ0/src/leveldb'
    g++ -I. -I./include -fno-builtin-memcmp -pthread -DOS_LINUX -DLEVELDB_PLATFORM_POSIX -O2 -DNDEBUG        -c db/builder.cc -o db/builder.o
    g++ -I. -I./include -fno-builtin-memcmp -pthread -DOS_LINUX -DLEVELDB_PLATFORM_POSIX -O2 -DNDEBUG        -c db/c.cc -o db/c.o
    g++ -I. -I./include -fno-builtin-memcmp -pthread -DOS_LINUX -DLEVELDB_PLATFORM_POSIX -O2 -DNDEBUG        -c db/dbformat.cc -o db/dbformat.o
    ...
kkoenen commented 5 years ago

Made file executable. Closing issue.