WIP: musl port

This commit is contained in:
nillerusr
2023-04-24 22:19:49 +00:00
parent ba695d2092
commit 699271f212
57 changed files with 24 additions and 2346 deletions

View File

@@ -386,9 +386,7 @@ DBG_INTERFACE bool ShouldUseNewAssertDialog()
#endif // DBGFLAG_ASSERTDLG
}
#if defined( POSIX ) && !defined ( ANDROID )
#include <execinfo.h>
#if defined( POSIX ) && PLATFORM_GLIBC
static void SpewBacktrace()
{
@@ -441,7 +439,7 @@ DBG_INTERFACE bool DoNewAssertDialog( const tchar *pFilename, int line, const tc
pFilename, line, pExpression);
if ( getenv( "POSIX_ASSERT_BACKTRACE" ) )
{
#if !defined ( ANDROID )
#if PLATFORM_GLIBC
SpewBacktrace();
#endif
}