Commit 9c3a1b09 authored by Ramon Nou's avatar Ramon Nou
Browse files

Update some gcc version issues

parent 33026d64
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -177,7 +177,7 @@ endmacro()

include(SelectLibraryConfigurations)

set(_mercury_components na mchecksum mercury_util mercury_hl)
set(_mercury_components na mercury_util mercury_hl)

# prevent repeating work if the main CMakeLists.txt already called
# find_package(PkgConfig)
+1 −1
Original line number Diff line number Diff line
@@ -174,7 +174,7 @@ endif()
if(GKFS_ENABLE_ROCKSDB)
    message(STATUS "[${PROJECT_NAME}] Checking for RocksDB")
    add_compile_definitions(GKFS_ENABLE_ROCKSDB)
    find_package(RocksDB 6.26.1 REQUIRED)
    find_package(RocksDB REQUIRED)
    message(STATUS "[${PROJECT_NAME}] RocksDB version ${RocksDB_VERSION}")
    message(STATUS "[${PROJECT_NAME}] RocksDB location ${RocksDB_DIR}")
endif()
+2 −1
Original line number Diff line number Diff line
@@ -42,6 +42,7 @@
#include <sys/types.h>
#include <unistd.h>
#include <limits>
#include <cstdint>

using namespace std;

@@ -114,7 +115,7 @@ static void pfind_print_help(pfind_options_t *res) {
         "\tworkdir = \"%s\"\n"
         "\t-newer = \"%s\"\n"
         "\t-name|-regex = \"%s\"\n"
         "\t-S: num servers = \"%s\"\n"
         "\t-S: num servers = \"%d\"\n"
         "\t-M: mountdir = \"%s\"\n"
         "Optional flags\n"
         "\t-h: prints the help\n"
+1 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@
#include <sys/types.h>
#include <unistd.h>
#include <limits>
#include <cstdint>

using namespace std;

+1 −0
Original line number Diff line number Diff line
@@ -35,6 +35,7 @@
#include <memory>
#include <atomic>
#include <array>
#include <string>

namespace gkfs::filemap {

Loading