Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions master/custom/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,7 @@ class MacOSArmWithBrewBuild(UnixBuild):
"--with-openssl=/opt/homebrew/opt/openssl@3",
"CPPFLAGS=-I/opt/homebrew/include",
"LDFLAGS=-L/opt/homebrew/lib",
"PKG_CONFIG_PATH=/opt/homebrew/opt/tcl-tk@8/lib/pkgconfig",
]
# These tests are known to crash on M1 macs (see bpo-45289).
testFlags = [*UnixBuild.testFlags,
Expand All @@ -530,6 +531,7 @@ class MacOSArmWithBrewNoGilBuild(UnixNoGilBuild):
"--with-openssl=/opt/homebrew/opt/openssl@3",
"CPPFLAGS=-I/opt/homebrew/include",
"LDFLAGS=-L/opt/homebrew/lib",
"PKG_CONFIG_PATH=/opt/homebrew/opt/tcl-tk@8/lib/pkgconfig",
]


Expand All @@ -540,6 +542,7 @@ class MacOSArmWithBrewRefleakBuild(UnixRefleakBuild):
"--with-openssl=/opt/homebrew/opt/openssl@3",
"CPPFLAGS=-I/opt/homebrew/include",
"LDFLAGS=-L/opt/homebrew/lib",
"PKG_CONFIG_PATH=/opt/homebrew/opt/tcl-tk@8/lib/pkgconfig",
]


Expand All @@ -550,6 +553,7 @@ class MacOSArmWithBrewNoGilRefleakBuild(UnixNoGilRefleakBuild):
"--with-openssl=/opt/homebrew/opt/openssl@3",
"CPPFLAGS=-I/opt/homebrew/include",
"LDFLAGS=-L/opt/homebrew/lib",
"PKG_CONFIG_PATH=/opt/homebrew/opt/tcl-tk@8/lib/pkgconfig",
]


Expand All @@ -559,6 +563,7 @@ class MacOSAsanNoGilBuild(UnixAsanNoGilBuild):
"--with-openssl=/opt/homebrew/opt/openssl@3",
"CPPFLAGS=-I/opt/homebrew/include",
"LDFLAGS=-L/opt/homebrew/lib",
"PKG_CONFIG_PATH=/opt/homebrew/opt/tcl-tk@8/lib/pkgconfig",
]
asan_options = 'detect_leaks=0:allocator_may_return_null=1:handle_segv=0'
compile_environ = {'ASAN_OPTIONS': asan_options}
Expand Down