update v4k
parent
927669505c
commit
9c48fbec13
|
@ -201012,7 +201012,7 @@ static char* luaL_prepbuffsize(luaL_Buffer* B, size_t sz) {
|
|||
# define ARCH_X86
|
||||
#elif defined __amd64__ || defined _M_X64
|
||||
# define ARCH_X64
|
||||
#elif defined __arm__ || defined __ARM__ || defined ARM || defined __ARM || defined __arm
|
||||
#elif defined __arm__ || defined __ARM__ || defined ARM || defined __ARM || defined __arm || defined __arm64__
|
||||
# define ARCH_ARM
|
||||
#elif defined OS_LINUX && defined __TINYC__ //< @r-lyeh: tcc+linux
|
||||
# define ARCH_X64 //< @r-lyeh: tcc+linux
|
||||
|
@ -274305,6 +274305,7 @@ void jo_write_mpeg(FILE *fp, const unsigned char *bgrx, int width, int height, i
|
|||
#endif
|
||||
#line 0
|
||||
//#define _RTL_RUN_ONCE _RTL_RUN_ONCE2 // __MINGW64__
|
||||
#undef I
|
||||
#line 1 "3rd_https.h"
|
||||
/*
|
||||
------------------------------------------------------------------------------
|
||||
|
@ -390593,13 +390594,7 @@ const char * app_exec( const char *cmd ) {
|
|||
|
||||
// pick the fastest code path per platform
|
||||
#if is(osx)
|
||||
for( FILE *fp = popen( cmd, "r" ); fp; rc = pclose(fp), fp = 0) {
|
||||
// while( fgets(buf, 4096 - 1, fp) ) {}
|
||||
}
|
||||
// if( rc != 0 ) {
|
||||
// char *r = strrchr(buf, '\r'); if(r) *r = 0;
|
||||
// char *n = strrchr(buf, '\n'); if(n) *n = 0;
|
||||
// }
|
||||
rc = system(cmd);
|
||||
#elif is(win32)
|
||||
STARTUPINFOA si = {0}; si.cb = sizeof(si);
|
||||
PROCESS_INFORMATION pi = {0};
|
||||
|
|
Loading…
Reference in New Issue