First steps

This commit is contained in:
JusicP
2020-11-19 22:37:27 +02:00
parent 6920a3bd08
commit 3434111923
1341 changed files with 883624 additions and 46746 deletions
+4
View File
@@ -226,8 +226,12 @@ extern "C" byte *GetStackPtr64();
#if defined(__llvm__) || defined(__clang__)
#define GetStackPtr( pStackPtr ) byte *pStackPtr = (byte*)__builtin_frame_address(0)
#else
#if defined(__arm__)
#define GetStackPtr( pStackPtr ) byte *pStackPtr = (byte*)__builtin_frame_address(0)
#else
#define GetStackPtr( pStackPtr ) register byte *pStackPtr __asm__( "esp" )
#endif
#endif
#elif defined(__SNC__)
#define GetStackPtr( pStackPtr ) byte *pStackPtr = (byte*)__builtin_frame_address(0)
#else
+1
View File
@@ -152,6 +152,7 @@ $Project "vstdlib"
{
-$ImpLib vstdlib
$Lib "coroutine_osx" [$OSXALL]
$Lib "libiconv" [$ANDROID]
}
}