]> glassweightruler.freedombox.rocks Git - Ventoy.git/blobdiff - VtoyTool/build.sh
Fix a bug when use workaround for Legacy BIOS access limitation with GPT partition...
[Ventoy.git] / VtoyTool / build.sh
index 07c36bee28236f79bc7b7ba06b33f7a903e9fea9..14ae09fbe342a71e2442f4cc2706c3cba9e79ec1 100644 (file)
@@ -5,12 +5,16 @@ rm -f vtoytool/00/*
 /opt/diet64/bin/diet -Os gcc -D_FILE_OFFSET_BITS=64  *.c BabyISO/*.c -IBabyISO -Wall -DBUILD_VTOY_TOOL -DUSE_DIET_C  -o  vtoytool_64
 /opt/diet32/bin/diet -Os gcc -D_FILE_OFFSET_BITS=64 -m32  *.c BabyISO/*.c -IBabyISO -Wall -DBUILD_VTOY_TOOL -DUSE_DIET_C  -o  vtoytool_32
 
+aarch64-buildroot-linux-uclibc-gcc -Os -static -D_FILE_OFFSET_BITS=64  *.c BabyISO/*.c -IBabyISO -Wall -DBUILD_VTOY_TOOL  -o  vtoytool_aa64
+
 #gcc -D_FILE_OFFSET_BITS=64 -static -Wall -DBUILD_VTOY_TOOL  *.c BabyISO/*.c -IBabyISO  -o  vtoytool_64
 #gcc -D_FILE_OFFSET_BITS=64  -Wall -DBUILD_VTOY_TOOL -m32  *.c BabyISO/*.c -IBabyISO  -o  vtoytool_32
 
-if [ -e vtoytool_64 ] && [ -e vtoytool_32 ]; then
+if [ -e vtoytool_64 ] && [ -e vtoytool_32 ] && [ -e vtoytool_aa64 ]; then
     echo -e '\n############### SUCCESS ###############\n'
     
+    aarch64-buildroot-linux-uclibc-strip --strip-all vtoytool_aa64
+    mv vtoytool_aa64 vtoytool/00/
     mv vtoytool_64 vtoytool/00/
     mv vtoytool_32 vtoytool/00/
 else