feat: Intel GPU fixes, add tcc compiler, spreadsheet improvements, paint app, file manager improvements

This commit is contained in:
2026-03-21 17:35:16 +01:00
parent 2fd9b7d027
commit 770dde5001
72 changed files with 45499 additions and 305 deletions
+12
View File
@@ -736,6 +736,18 @@ void do_update() {
flush_ui(); st.step = STEP_ERROR; return;
}
// Step 4: Update lib/ — compiler runtime, headers, libc
add_log("Updating lib/...");
flush_ui();
snprintf(path_buf, sizeof(path_buf), "%d:/lib", drive_num);
montauk::fmkdir(path_buf);
if (!copy_recursive("0:/lib", path_buf)) {
add_log("ERROR: Failed to update lib/");
flush_ui(); st.step = STEP_ERROR; return;
}
char copy_msg[64];
snprintf(copy_msg, sizeof(copy_msg), " %d files, %d directories updated",
g_files_copied, g_dirs_created);