File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 11DIR := ${CURDIR}
22export PATH := /usr/local/opt/qt@5/bin:$(PATH )
3- export LDFLAGS := -L/usr/local/opt/qt@5/lib
3+ # Some users on old versions of MacOS 10.13 run into the error:
4+ # dyld: cannot load 'PathOfBuilding' (load command 0x80000034 is unknown)
5+ #
6+ # It looks like 0x80000034 is associated with the fixup_chains optimization
7+ # that improves startup time:
8+ # https://www.emergetools.com/blog/posts/iOS15LaunchTime
9+ #
10+ # For compatibility, we disable that using the flag from this thread:
11+ # https://github.com/python/cpython/issues/97524
12+ export LDFLAGS := -L/usr/local/opt/qt@5/lib -Wl,-no_fixup_chains
413export CPPFLAGS := -I/usr/local/opt/qt@5/include
514export PKG_CONFIG_PATH := /usr/local/opt/qt@5/lib/pkgconfig
615
You can’t perform that action at this time.
0 commit comments