Skip to content

Commit

Permalink
Merge pull request #71 from eschnett/eschnett/darwin-link
Browse files Browse the repository at this point in the history
Add -headerpad_max_install_names link option on Darwin
  • Loading branch information
eschnett committed Oct 9, 2016
2 parents ca07c0c + 4827325 commit d434259
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 @@ -13,7 +13,7 @@ ifeq ($(os), Linux)
make-dynamiclib = -shared
dynamiclib-suffix = so
else ifeq ($(os), Darwin)
make-dynamiclib = -dynamiclib
make-dynamiclib = -dynamiclib -headerpad_max_install_names
dynamiclib-suffix = dylib
else
make-dynamiclib = -shared
Expand Down

0 comments on commit d434259

Please sign in to comment.