Skip to content

Commit

Permalink
Drop -Wl,--as-needed
Browse files Browse the repository at this point in the history
  • Loading branch information
APN-Pucky committed Dec 5, 2024
1 parent 253a44c commit 892fc28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ default: lib
static: lib
dynamic: lib
$(AR) -x libmpfun90.a
$(CXX) $(LDFLAGS) -shared -Wl,--as-needed -Wl,-soname,libmpfun90.so *.o -o libmpfun90.so
$(CXX) $(LDFLAGS) -shared -Wl,-soname,libmpfun90.so *.o -o libmpfun90.so


lib: libmpfun90.a
Expand Down

1 comment on commit 892fc28

@matthewfeickert
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

d00bfe0#commitcomment-149959302

Please let me know when/if all works with latest git version where I dropped the --as-needed. Then I'll tag it with tomorrows date.

@APN-Pucky Yeah, I think this is good to go.

Please sign in to comment.