Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configuration/scripts/machines/Macros.conda_linux
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ LD:= $(FC)
MODDIR += -I$(CONDA_PREFIX)/include

# Libraries to be passed to the linker
SLIBS := -lnetcdf -lnetcdff
SLIBS := -L$(CONDA_PREFIX)/lib -lnetcdf -lnetcdff

# Necessary flag to compile with OpenMP support
ifeq ($(ICE_THREADED), true)
Expand Down
2 changes: 1 addition & 1 deletion configuration/scripts/machines/Macros.conda_macos
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ MODDIR += -I$(CONDA_PREFIX)/include
CFLAGS_HOST = -isysroot$(shell xcrun --show-sdk-path)

# Libraries to be passed to the linker
SLIBS := -lnetcdf -lnetcdff
SLIBS := -L$(CONDA_PREFIX)/lib -lnetcdf -lnetcdff

# Necessary flag to compile with OpenMP support
ifeq ($(ICE_THREADED), true)
Expand Down