Skip to content

Commit

Permalink
remove unneeded library flag & remove debug flags
Browse files Browse the repository at this point in the history
  • Loading branch information
chowland committed Jan 5, 2024
1 parent 9647214 commit bd94ecf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ endif

ifeq ($(MACHINE),PC)
# GNU Debug Flags
FC += -O0 -g -fbacktrace -Wall -Wextra
# FC += -O0 -g -fbacktrace -Wall -Wextra
# FC += -Wpedantic
# FC += -Warray-temporaries
# FC += -fcheck=all -finit-real=snan -ffpe-trap=invalid #-std=f2018
# FC += -O0 -pg -fbacktrace -fbounds-check
# Intel Debug Flags
# FC += -O0 -g -traceback -check bounds
ifeq ($(FLAVOUR),GNU)
LDFLAGS = -L$(HOME)/fftw-install/lib -lfftw3 -llapack -ldl
LDFLAGS = -lfftw3 -llapack -ldl
else
LDFLAGS = -lfftw3 -qmkl=sequential
endif
Expand Down

0 comments on commit bd94ecf

Please sign in to comment.