Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change default to build shared libraries #143

Merged
merged 2 commits into from
Jul 15, 2024
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
1 change: 0 additions & 1 deletion .github/workflows/mac_mpich.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ jobs:
pnc_ac_debug=yes \
--enable-burst_buffering \
--enable-subfiling \
--enable-shared \
--enable-thread-safe \
--with-pthread \
--disable-fortran \
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/mac_openmpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ jobs:
pnc_ac_debug=yes \
--enable-burst_buffering \
--enable-subfiling \
--enable-shared \
--enable-thread-safe \
--with-pthread \
--disable-fortran \
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ubuntu_mpich.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ jobs:
pnc_ac_debug=yes \
--enable-burst_buffering \
--enable-subfiling \
--enable-shared \
--enable-thread-safe \
--with-pthread \
--with-mpi=${GITHUB_WORKSPACE}/MPICH
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ubuntu_openmpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ jobs:
pnc_ac_debug=yes \
--enable-burst_buffering \
--enable-subfiling \
--enable-shared \
--enable-thread-safe \
--with-pthread \
--with-mpi=${GITHUB_WORKSPACE}/OPENMPI \
Expand Down
3 changes: 2 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,8 @@ dnl Travis CI only has v2.4.2
LT_PREREQ([2.4.6])
dnl LT_INIT([dlopen disable-shared])
dnl LT_INIT([dlopen])
LT_INIT([disable-shared])
dnl LT_INIT([disable-shared]) # build without shared libraries
LT_INIT

dnl check MPI C++ compiler
AC_ARG_ENABLE(cxx,
Expand Down
3 changes: 2 additions & 1 deletion sneak_peek.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ This is essentially a placeholder for the next release note ...
+ none

* Configure options
+ none
+ The default has been changed to build both shared and static libraries.
See [PR #143](https://github.com/Parallel-NetCDF/PnetCDF/pull/143).

* Configure updates:
+ none
Expand Down