Index: devel/py-awscrt/files/patch-setup.py =================================================================== --- devel/py-awscrt/files/patch-setup.py +++ devel/py-awscrt/files/patch-setup.py @@ -25,7 +25,15 @@ def awscrt_ext(): # fetch the CFLAGS/LDFLAGS from env extra_compile_args = os.environ.get('CFLAGS', '').split() -@@ -360,7 +349,7 @@ def awscrt_ext(): +@@ -311,6 +311,7 @@ def awscrt_ext(): + + if distutils.ccompiler.get_default_compiler() != 'msvc': + extra_compile_args += ['-Wno-strict-aliasing', '-std=gnu99'] ++ extra_link_args += ['-lexecinfo'] + + # treat warnings as errors in development mode + if is_development_mode(): +@@ -320,7 +321,7 @@ def awscrt_ext(): # a proper MacOS Universal2 binary. The linker warns us about this, # but WHATEVER. Building everything twice (x86_64 and arm64) takes too long. if not is_macos_universal2():