Skip to content

Commit

Permalink
(build) bug fix with build on Mac OS: explicitly request static libs …
Browse files Browse the repository at this point in the history
…for libgiza.a and libpglot.a
  • Loading branch information
danieljprice committed Nov 29, 2024
1 parent 72d3703 commit e4385b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ libgiza_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \

libcpgplot_la_SOURCES = giza-cpgplot.c

libcpgplot_la_LDFLAGS = $(libgiza_la_LDFLAGS) -lgiza
libcpgplot_la_LDFLAGS = $(libgiza_la_LDFLAGS) -lgiza -static

libpgplot_la_SOURCES = giza-fortran.F90 giza-pgplot.f90

libpgplot_la_LDFLAGS = $(libcpgplot_la_LDFLAGS)
libpgplot_la_LDFLAGS = $(libcpgplot_la_LDFLAGS) -static

include_HEADERS = cpgplot.h giza.h giza-shared.h giza-version.h giza-fortran.F90

Expand Down

0 comments on commit e4385b5

Please sign in to comment.