Skip to content

Commit

Permalink
supress warning
Browse files Browse the repository at this point in the history
  • Loading branch information
fdobad committed Aug 28, 2024
1 parent c909690 commit b027289
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cell2Fire/makefile.static
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CXX = g++-12

# Compiler and linker flags
CXXFLAGS = -m64 -fPIC -fno-strict-aliasing -fexceptions -fopenmp -DNDEBUG -DIL_STD -std=c++14 -O3 -I /usr/include -I /usr/include/eigen3
LDFLAGS = -m64 -fPIC -fno-strict-aliasing -fexceptions -fopenmp -DNDEBUG -DIL_STD -static -static-libgcc -static-libstdc++ -lm -lpthread -ltiff -ljpeg -ljbig -llzma -lzstd -lwebp -ldeflate -lz -lLerc
LDFLAGS = -m64 -fPIC -fno-strict-aliasing -fexceptions -fopenmp -DNDEBUG -DIL_STD -static -static-libgcc -static-libstdc++ -lm -lpthread -ltiff -ljpeg -ljbig -llzma -lzstd -lwebp -ldeflate -lz -lLerc -Wl,--no-warn-search-mismatch

# Source files
SRCS = Cell2Fire.cpp Cells.cpp FuelModelSpain.cpp FuelModelKitral.cpp FuelModelFBP.cpp Spotting.cpp ReadCSV.cpp ReadArgs.cpp Lightning.cpp WriteCSV.cpp Ellipse.cpp DataGenerator.cpp
Expand All @@ -28,6 +28,6 @@ clean:

DESTDIR = /usr/local/bin
install: all
cp $(TARGETS) $(DESTDIR)
cp $(TARGET) $(DESTDIR)
uninstall: all
rm $(DESTDIR)/$(TARGETS)
rm $(DESTDIR)/$(TARGET)

0 comments on commit b027289

Please sign in to comment.