Hmmm....I'm unable to compile the latest from git
or run the binary of this latest release on Xubuntu 64bit. Has another dependency been added that I'm not aware of?
Is it only me? (again)
My compile log:
rig@rig:~/RelayNode/c++$ make -f Makefile
yasm -f x64 -f elf64 -X gnu -g dwarf2 -D LINUX -o crypto/sha256_code_release/sha256_avx2_rorx2.a crypto/sha256_code_release/sha256_avx2_rorx2.asm
yasm -f x64 -f elf64 -X gnu -g dwarf2 -D LINUX -o crypto/sha256_code_release/sha256_avx1.a crypto/sha256_code_release/sha256_avx1.asm
yasm -f x64 -f elf64 -X gnu -g dwarf2 -D LINUX -o crypto/sha256_code_release/sha256_sse4.a crypto/sha256_code_release/sha256_sse4.asm
g++ -I. -g -DFORCE_LE -DNDEBUG -O3 -march=native -mtune=native -flto -std=c++11 -Wall -I/usr/include -c -o flaggedarrayset.o flaggedarrayset.cpp
g++ -I. -g -DFORCE_LE -DNDEBUG -O3 -march=native -mtune=native -flto -std=c++11 -Wall -I/usr/include -c -o utils.o utils.cpp
g++ -I. -g -DFORCE_LE -DNDEBUG -O3 -march=native -mtune=native -flto -std=c++11 -Wall -I/usr/include -c -o relayprocess.o relayprocess.cpp
g++ -I. -g -DFORCE_LE -DNDEBUG -O3 -march=native -mtune=native -flto -std=c++11 -Wall -I/usr/include -c -o p2pclient.o p2pclient.cpp
g++ -I. -g -DFORCE_LE -DNDEBUG -O3 -march=native -mtune=native -flto -std=c++11 -Wall -I/usr/include -c -o connection.o connection.cpp
connection.cpp: In member function ‘void Connection::do_send_bytes(const std::shared_ptr >&, int)’:
connection.cpp:193:38: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result]
write(processor.pipe_write, "1", 1);
^
connection.cpp: In member function ‘void Connection::maybe_send_bytes(const std::shared_ptr >&, int)’:
connection.cpp:217:38: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result]
write(processor.pipe_write, "1", 1);
^
connection.cpp: In static member function ‘static void Connection::do_setup_and_read(Connection*)’:
connection.cpp:282:38: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result]
write(processor.pipe_write, "1", 1);
^
connection.cpp: In member function ‘ssize_t Connection::read_all(char*, size_t)’:
connection.cpp:309:40: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result]
write(processor.pipe_write, "1", 1);
^
g++ -I. -g -DFORCE_LE -DNDEBUG -O3 -march=native -mtune=native -flto -std=c++11 -Wall -I/usr/include -c -o crypto/sha2.o crypto/sha2.cpp
g++ -I. -g -DFORCE_LE -DNDEBUG -O3 -march=native -mtune=native -flto -std=c++11 -Wall -I/usr/include -c -o client.o client.cpp
g++ -I. -g -DFORCE_LE -DNDEBUG -O3 -march=native -mtune=native -flto -std=c++11 -Wall -I/usr/include crypto/sha256_code_release/sha256_avx2_rorx2.a crypto/sha256_code_release/sha256_avx1.a crypto/sha256_code_release/sha256_sse4.a flaggedarrayset.o utils.o relayprocess.o p2pclient.o connection.o crypto/sha2.o client.o -Wl,--no-as-needed -pthread -lresolv -o relaynetworkclient
rig@rig:~/RelayNode/c++$
Sorry for my Linux noobness........