macOS don't warn about missing debug symbols

some 3rd party libraries, notably plugins, are optimized
and don't include debug symbols. That's fine.
This commit is contained in:
Robin Gareus
2026-07-16 13:00:12 +02:00
parent ce1a251511
commit 01fcd102ee
+2 -2
View File
@@ -621,7 +621,7 @@ for exe in $executables; do
install_name_tool $changes $EXE
fi
if [ x$DEBUG = xT ]; then
dsymutil $EXE
dsymutil -q $EXE
fi
done
@@ -666,7 +666,7 @@ for libdir in $Frameworks $Surfaces $Panners $Backends $Frameworks/LV2/* $GTK_EN
install_name_tool -id @executable_path/../lib$libbase/$base $dylib
if [ x$DEBUG = xT ]; then
dsymutil $dylib
dsymutil -q $dylib
fi
done