You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
g++ -O3 -g -Wall -Wno-unused-function -Wfatal-errors -DCOMPACT_GRAPH -DZLIB_COMPRESSION_LEVEL=Z_BEST_SPEED -msse4.2 -include core/types.h -I/usr/local/include/boost-numeric-bindings -IADOOP_HOME/include -c -o object_files/core.o core/core.cpp
In file included from core/../utils/memory_utils.h:34:0,
from core/autotuner.hpp:22,
from core/split_stream.hpp:21,
from core/disk_io.hpp:21,
from core/x-lib.hpp:21,
from core/core.cpp:19:
core/../utils/../core/hdfs_io.h: In member function ‘void x_lib::hdfs_io::refreshReadHandle(int)’:
core/../utils/../core/hdfs_io.h:124:7: warning: unused variable ‘closeretval’ [-Wunused-variable]
int closeretval = hdfsCloseFile(fs, fileRDmap[fd]);
^~~~~~~~~~~
In file included from core/core.cpp:19:0:
core/x-lib.hpp: In constructor ‘x_lib::streamIO<A>::streamIO()’:
core/x-lib.hpp:477:72: warning: ‘new’ of type ‘x_lib::x_thread’ with extended alignment 64 [-Waligned-new=]
workers[i] = new x_thread(config, i, cpu_state_array[i]);
^
core/x-lib.hpp:477:72: note: uses ‘void* operator new(std::size_t)’, which does not have an alignment parameter
core/x-lib.hpp:477:72: note: use ‘-faligned-new’ to enable C++17 over-aligned new support
In file included from core/core.cpp:20:0:
core/sg_driver.hpp: In constructor ‘algorithm::scatter_gather<A, F>::scatter_gather()’:
core/sg_driver.hpp:173:35: warning: ‘new’ of type ‘algorithm::sg_pcpu’ with extended alignment 64 [-Waligned-new=]
pcpu_array[i] = new sg_pcpu();
^
core/sg_driver.hpp:173:35: note: uses ‘void* operator new(std::size_t)’, which does not have an alignment parameter
core/sg_driver.hpp:173:35: note: use ‘-faligned-new’ to enable C++17 over-aligned new support
In file included from core/core.cpp:21:0:
core/sg_driver_async.hpp: In constructor ‘algorithm::async_scatter_gather<A, F>::async_scatter_gather()’:
core/sg_driver_async.hpp:153:41: warning: ‘new’ of type ‘algorithm::sg_async_pcpu’ with extended alignment 64 [-Waligned-new=]
pcpu_array[i] = new sg_async_pcpu();
^
core/sg_driver_async.hpp:153:41: note: uses ‘void* operator new(std::size_t)’, which does not have an alignment parameter
core/sg_driver_async.hpp:153:41: note: use ‘-faligned-new’ to enable C++17 over-aligned new support
Assembler messages:
Fatal error: can't create object_files/core.o: No such file or directory
Makefile:61: recipe for target 'object_files/core.o' failed
make: *** [object_files/core.o] Error 1
The text was updated successfully, but these errors were encountered:
Ubuntu 18.04
hadoop 3.1.1
I am getting the following error
The text was updated successfully, but these errors were encountered: