init core hash table
This commit is contained in:
@@ -27,9 +27,9 @@ int main(int argc, char **argv) {
|
||||
bool execute_python_snippets = true; // make sure to not abuse just for quick maths
|
||||
bool run_server = false;
|
||||
|
||||
bool core_test_target = false;
|
||||
bool core_test_target = true;
|
||||
bool win32_target = false;
|
||||
bool wasm_target = true;
|
||||
bool wasm_target = false;
|
||||
|
||||
if (execute_python_snippets) {
|
||||
sb8_t *sb = sb8_serial_begin(arena);
|
||||
@@ -75,13 +75,14 @@ int main(int argc, char **argv) {
|
||||
ok = os_systemf(
|
||||
"cl ../src/core/core_test_entry.c -Fe:core_test.exe -Fd:core_test.pdb"
|
||||
" -I ../src"
|
||||
" /Zi /FC /nologo /Oi /O2"
|
||||
" /Zi /FC /nologo /Oi"
|
||||
" /WX /W3 /wd4200 /diagnostics:column"
|
||||
" /link /incremental:no"
|
||||
);
|
||||
if (ok != 0) return ok;
|
||||
|
||||
os_systemf("core_test.exe");
|
||||
ok = os_systemf("core_test.exe");
|
||||
return ok;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user