This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
PATH=/usr/local/sbin:/usr/local/bin:/usr/bin | |
VHDD=archlinux-vm.qcow2 | |
VCD=archlinux-2024.10.12-x86_64.iso | |
CDLINE= | |
clean(){ | |
echo "Do you really want to remove everything?" | |
read -r l |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
PATH=/usr/local/sbin:/usr/local/bin:/usr/bin | |
VHDD=alpinelinux-vm.qcow2 | |
VCD=alpine-virt-3.20.3-x86_64.iso | |
CDLINE= | |
clean(){ | |
echo "Do you really want to remove everything?" | |
read -r l |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/lib/graphics_engine/include/vk_mem_alloc.h b/lib/graphics_engine/include/vk_mem_alloc.h | |
index bdb4ff576..df1f5d98f 100644 | |
--- a/lib/graphics_engine/include/vk_mem_alloc.h | |
+++ b/lib/graphics_engine/include/vk_mem_alloc.h | |
@@ -2645,6 +2645,7 @@ remove them if not needed. | |
#include <cassert> // for assert | |
#include <algorithm> // for min, max | |
#include <mutex> | |
+ #include <cstdio> | |
#else |