Skip to content

Commit

Permalink
Revert "Remove deprecated option -noall-load (#94)" (#95)
Browse files Browse the repository at this point in the history
This reverts commit a4222a7.
  • Loading branch information
tkralphs authored May 2, 2024
1 parent a4222a7 commit b509d31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Upload bottles as artifact
if: always() && github.event_name == 'pull_request'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@main
with:
name: bottles
path: '*.bottle.*'
3 changes: 1 addition & 2 deletions mumps-seq.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ class MumpsSeq < Formula
url "https://graal.ens-lyon.fr/MUMPS/MUMPS_5.5.1.tar.gz"
mirror "http://mumps.enseeiht.fr/MUMPS_5.5.1.tar.gz"
sha256 "1abff294fa47ee4cfd50dfd5c595942b72ebfcedce08142a75a99ab35014fa15"
revision 1

bottle do
root_url "https://github.com/coin-or-tools/homebrew-coinor/releases/download/mumps-seq-5.5.1"
Expand Down Expand Up @@ -62,7 +61,7 @@ def install
# make shared lib
so = OS.mac? ? "dylib" : "so"
all_load = OS.mac? ? "-all_load" : "--whole-archive"
noall_load = OS.mac? ? "" : "--no-whole-archive"
noall_load = OS.mac? ? "-noall_load" : "--no-whole-archive"
shopts = OS.mac? ? ["-undefined", "dynamic_lookup"] : []
install_name = ->(libname) { OS.mac? ? ["-Wl,-install_name", "-Wl,#{lib}/#{libname}.#{so}"] : [] }
cd "lib" do
Expand Down

0 comments on commit b509d31

Please sign in to comment.