Skip to content

Commit

Permalink
Merge pull request #4347 from vgteam/no-headerpad
Browse files Browse the repository at this point in the history
Remove extra `-headerpad` linker argument
  • Loading branch information
adamnovak committed Jul 16, 2024
2 parents 2c0356f + 462dc6b commit c1bcdef
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,9 @@ ifeq ($(shell uname -s),Darwin)
START_STATIC =
END_STATIC =

# We need to use special flags to let us rename libraries
LD_RENAMEABLE_FLAGS = -Wl,-headerpad -Wl,-headerpad_max_install_names
# We need to use special flags to let us rename libraries.
# See <https://github.com/Homebrew/legacy-homebrew/issues/20233>
LD_RENAMEABLE_FLAGS = -Wl,-headerpad_max_install_names
else
# We are not running on OS X
$(info OS is Linux)
Expand Down

1 comment on commit c1bcdef

@adamnovak
Copy link
Member Author

Choose a reason for hiding this comment

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

vg CI tests complete for merge to master. View the full report here.

16 tests passed, 0 tests failed and 0 tests skipped in 17255 seconds

Please sign in to comment.