Skip to content
Snippets Groups Projects
Commit 573fd035 authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Ignore null-termination warning in format strings

parent a43c3245
No related branches found
No related tags found
No related merge requests found
...@@ -124,7 +124,7 @@ endif ...@@ -124,7 +124,7 @@ endif
# CXXFLAGS defines the default compilation options for the C++ compiler # CXXFLAGS defines the default compilation options for the C++ compiler
ifndef CXXFLAGS ifndef CXXFLAGS
override CXXFLAGS=-O3 -ggdb -pg -coverage -I$(HDF5_INCLUDE) $(MPI_CXXFLAGS) $(NVTX_CXXFLAGS) override CXXFLAGS=-O3 -ggdb -pg -coverage -Wno-format-contains-nul -I$(HDF5_INCLUDE) $(MPI_CXXFLAGS) $(NVTX_CXXFLAGS)
ifdef USE_OPENMP ifdef USE_OPENMP
override CXXFLAGS+= -fopenmp override CXXFLAGS+= -fopenmp
# closes USE_OPENMP # closes USE_OPENMP
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment