chris1111 Posted August 27, 2025 Share Posted August 27, 2025 2 hours ago, MakAsrock said: Solved the problem with non-stop output to the screen by adding (make pkg | tee mpkg.log). I won't re-upload the file. I'll upload it when I'm sure that I can't improve anything else. Nice catch because I have the loop on my script at make pkg with the tee it work like before 3 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839823 Share on other sites More sharing options...
LockDown Posted August 27, 2025 Share Posted August 27, 2025 Hi @Slice Does Rtc8Allowed works the same as this? Comment: RTC fix to stop Post Error Find: <47017000 70000108> Replace: <47017000 70000102> Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839830 Share on other sites More sharing options...
Alpha22 Posted August 27, 2025 Share Posted August 27, 2025 13 hours ago, MakAsrock said: So let's get started: Slice yesterday posted a commit based on my buldme. However, the checks showed the following bugs: 1. Everything related to XCODE didn't work - fixed it. 2. Lots of extra code - trying to fix it. 3. Removed all sorts of compilation conditions like if XCODE is less, if XCODE is equal and set up reading the version directly with export to the MYTOOLCHAIN variable and substituting it as an argument for compilation. 4. Now I'll do some optimization. 5. List of errors: A. Error: local can only be used inside functions in Bash. B. Bash can't compare strings like "14.*" the way it was in the code. This condition won't work: if [[ "$xrel" < "14.*" ]]; then Here is a working version: xrel="$(defaults read /Applications/Xcode.app/Contents/version.plist CFBundleShortVersionString | cut -d. -f1)" if [[ "$xrel" -lt 14 ]]; then B. There was an error in the path to Xcode.app: locfl xrel="$(defaults read ~/Applications/Xcode.app/Contents/version.plist CFBundleShortVersionString" Extra tilde. But it doesn't matter anymore since the whole algorithm has been fixed. What was reworked: 1. Work in Tahoe and Sequoia. The toolchain version is read directly from Xcode's version.plist and substituted automatically. xrel="XCODE$(defaults read /Applications/Xcode.app/Contents/version.plist CFBundleShortVersionString | cut -d. -f1)" ./ebuild.sh -fr -D NO_GRUB_DRIVERS_EMBEDDED -D USE_APPLE_HFSPLUS_DRIVER -t $xrel and in two more places: ./ebuild.sh -fr -mc --no-usb -D NO_GRUB_DRIVERS_EMBEDDED -t $xrel ./ebuild.sh -fr -D NO_GRUB_DRIVERS_EMBEDDED -t $xrel A still slightly raw, but fully working buildme file is attached. Try it at your own risk. buildme.zip 6.44 kB · 4 downloads Great, I am away on business and will try it out as soon as I can thanks 2 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839833 Share on other sites More sharing options...
naiclub Posted August 27, 2025 Share Posted August 27, 2025 19 hours ago, MakAsrock said: So let's get started: Slice yesterday posted a commit based on my buldme. However, the checks showed the following bugs: 1. Everything related to XCODE didn't work - fixed it. 2. Lots of extra code - trying to fix it. 3. Removed all sorts of compilation conditions like if XCODE is less, if XCODE is equal and set up reading the version directly with export to the MYTOOLCHAIN variable and substituting it as an argument for compilation. 4. Now I'll do some optimization. 5. List of errors: A. Error: local can only be used inside functions in Bash. B. Bash can't compare strings like "14.*" the way it was in the code. This condition won't work: if [[ "$xrel" < "14.*" ]]; then Here is a working version: xrel="$(defaults read /Applications/Xcode.app/Contents/version.plist CFBundleShortVersionString | cut -d. -f1)" if [[ "$xrel" -lt 14 ]]; then B. There was an error in the path to Xcode.app: locfl xrel="$(defaults read ~/Applications/Xcode.app/Contents/version.plist CFBundleShortVersionString" Extra tilde. But it doesn't matter anymore since the whole algorithm has been fixed. What was reworked: 1. Work in Tahoe and Sequoia. The toolchain version is read directly from Xcode's version.plist and substituted automatically. xrel="XCODE$(defaults read /Applications/Xcode.app/Contents/version.plist CFBundleShortVersionString | cut -d. -f1)" ./ebuild.sh -fr -D NO_GRUB_DRIVERS_EMBEDDED -D USE_APPLE_HFSPLUS_DRIVER -t $xrel and in two more places: ./ebuild.sh -fr -mc --no-usb -D NO_GRUB_DRIVERS_EMBEDDED -t $xrel ./ebuild.sh -fr -D NO_GRUB_DRIVERS_EMBEDDED -t $xrel A still slightly raw, but fully working buildme file is attached. Try it at your own risk. buildme.zip 6.44 kB · 7 downloads @MakAsrock I tried it and it works quite well. thank.. 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839850 Share on other sites More sharing options...
MakAsrock Posted August 27, 2025 Share Posted August 27, 2025 (edited) All fixes buildme will now be in my github repository only. Perhaps there will be something else related to the topic of Mac OS on PC. Edited August 27, 2025 by MakAsrock 3 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839859 Share on other sites More sharing options...
Matgen84 Posted August 27, 2025 Share Posted August 27, 2025 2 minutes ago, MakAsrock said: All fixes buildme will now be in my github repository only. Perhaps there will be something else related to the topic of Mac OS on PC. Do you means, you have a personal account! What is your account name on GitHub ? Please. 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839861 Share on other sites More sharing options...
MakAsrock Posted August 27, 2025 Share Posted August 27, 2025 (edited) On 8/27/2025 at 6:32 PM, Matgen84 said: Do you means, you have a personal account! What is your account name on GitHub ? Please. All the details are in my profile (click Reveal hidden contents). Edited August 30, 2025 by MakAsrock 1 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839862 Share on other sites More sharing options...
Max.1974 Posted August 28, 2025 Share Posted August 28, 2025 (edited) Credits @Fácia @MakAsrock @chris1111 for all fixes Language: English Clover Compiler Builder - Ferramentas de Inglês Full.zip Fix about delete or not git clone folder Edited August 28, 2025 by Max.1974 4 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839889 Share on other sites More sharing options...
Matgen84 Posted August 28, 2025 Share Posted August 28, 2025 @Max.1974 Thanks for this amazing tools. Is possible to have English language for international use. Please. ✔ Repositório atualizado. Aplicando correções de código fonte... Corrigindo AcpiParser.h linha 59... Corrigindo AcpiParser.c linha 231... ✔ Correções de código aplicadas. Configurando GCC151 para build sem erros... ✔ Configuração GCC151 otimizada. Recompilando BaseTools... 1 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839892 Share on other sites More sharing options...
Matgen84 Posted August 28, 2025 Share Posted August 28, 2025 Hi @Max.1974 @MakAsrock Maybe, I made a mistake somewhere.... Create local git repo from scratch with Clover Compiler Builder. Select option 1 then option 7: Spoiler Select option 5: * Clover build process took 8m53s to complete... [CHECK XCODE] Status: gettext-0.22.4.tar.xz not found. % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 9.7M 100 9.7M 0 0 125k 0 0:01:19 0:01:19 --:--:-- 123k Warning: Got more output options than URLs - Creating new RAM disk Initialized /dev/rdisk8 as a 300 MB case-insensitive HFS Plus volume - gettext-0.22.4 extract... - gettext-0.22.4 configure... - gettext-0.22.4 make... - gettext-0.22.4 installing... - gettext-0.22.4 installed in /Users/mathieu/src/CloverBootloader/toolchain - Ejecting RAM disk "disk8" ejected. [BUILD PKG] The log will be created in the CloverPackage folder. mkdir ../sym: File exists at bin/po4a/lib/Locale/Po4a/TransTractor.pm line 459. make: *** [pkg] Error 17 Saving session... ...copying shared history... ...saving history...truncating history files... ...completed. Deleting expired sessions...none found. [Opération terminée] 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839894 Share on other sites More sharing options...
Max.1974 Posted August 28, 2025 Share Posted August 28, 2025 Hi my friend are you need in your language ? Check if you have Command Line Tools ⚒️ compatible and I’m using Xcode 16.4 with beta 8. Send to me zípe in text your all terminal errors. Thanks 😊 make -C CloverPackage clean # ou make clean && make pkg Remove old git clover or run this commands The creation is normal in Home folder. Two steps only. If you need im make one video for explain 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839896 Share on other sites More sharing options...
Matgen84 Posted August 28, 2025 Share Posted August 28, 2025 2 minutes ago, Max.1974 said: Hi my friend are you need in your language ? Check if you have Command Line Tools ⚒️ compatible and I’m using Xcode 16.4 with beta 8. Send to me zípe in text your all terminal errors. Thanks 😊 Hi my friend @Max.1974 I also use XCODE 16.4 but with Sequoia 15.6, Command Line Tools installed. I build Clover with GCC151 Toolchain. About terminal errors, I sent them in my previous message. For option 3 and option 7, there are some issue with sym folder, I believe. 2 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839897 Share on other sites More sharing options...
Max.1974 Posted August 28, 2025 Share Posted August 28, 2025 (edited) Hi @Matgen84 I think try fix clean git clone folder before, and fix errors about it. Im used run 2 build all default toolchain, compile everything. Im test 3 and 7, we get errors because need run option compiler first, so choose number 1) or 2) from menu. I adjust for not delete folder if exist Here in English my friend with or without git clone repo in $Home/ Just click twice and run (if you wanted in French tell me) Fixed ask about delete or not git clone Clover folder Clover Compiler Builder - English - ASK II.zip Edited August 28, 2025 by Max.1974 3 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839899 Share on other sites More sharing options...
Matgen84 Posted August 28, 2025 Share Posted August 28, 2025 Hi @Max.1974 Thanks a lot. English version is enough, so French is not necessary. If I understand well, before option 3 and 7, we have to select option 1. BuildClover each time. So if BuildClover is included in option 3 and 7 in the script.... it's automatically do the job. Sorry for my bad English. For example, below. It can be the same for XCODE: select opt in "${options[@]}" do case $opt in "build Clover (Default Toolchain) ") buildClover break ;; "build all (Default Toolchain) ") buildClover BLC buildPkg buildIso makeV2 break ;; "make Release (Default Toolchain) ") makeRelease BLC buildPkg buildIso makeV2 break ;; "update Clover ") updateClover break ;; "make pkg ") ---> buildClover BLC buildPkg break ;; "make iso ") buildIso break ;; "make Clover_V2") ----> buildClover makeV2 break ;; "build Clover (with XCode)") buildCloverXC break ;; "build all (with XCode)") buildCloverXC BLC buildPkg buildIso makeV2 break ;; "make Release (with XCode)") makeReleaseXC BLC buildPkg buildIso makeV2 break ;; "build Clover with HFSPlus") buildCloverHFSPlus break ;; "Extra Options") Extra break ;; "Exit") exit 0 ;; *) echo "invalid option $REPLY" break ;; esac done menu } 1 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839906 Share on other sites More sharing options...
MakAsrock Posted August 28, 2025 Share Posted August 28, 2025 5 hours ago, Matgen84 said: Hi @Max.1974 Thanks a lot. English version is enough, so French is not necessary. If I understand well, before option 3 and 7, we have to select option 1. BuildClover each time. So if BuildClover is included in option 3 and 7 in the script.... it's automatically do the job. Sorry for my bad English. For example, below. It can be the same for XCODE: select opt in "${options[@]}" do case $opt in "build Clover (Default Toolchain) ") buildClover break ;; "build all (Default Toolchain) ") buildClover BLC buildPkg buildIso makeV2 break ;; "make Release (Default Toolchain) ") makeRelease BLC buildPkg buildIso makeV2 break ;; "update Clover ") updateClover break ;; "make pkg ") ---> buildClover BLC buildPkg break ;; "make iso ") buildIso break ;; "make Clover_V2") ----> buildClover makeV2 break ;; "build Clover (with XCode)") buildCloverXC break ;; "build all (with XCode)") buildCloverXC BLC buildPkg buildIso makeV2 break ;; "make Release (with XCode)") makeReleaseXC BLC buildPkg buildIso makeV2 break ;; "build Clover with HFSPlus") buildCloverHFSPlus break ;; "Extra Options") Extra break ;; "Exit") exit 0 ;; *) echo "invalid option $REPLY" break ;; esac done menu } Pas forcément. Si vous téléchargez le fichier buildme depuis mon dépôt, vous pouvez le faire dans n'importe quel ordre. Le fichier de Slice a également été corrigé par moi, mais avec des erreurs. J'étais pressé, et Slice aussi. Désolé pour la traduction de Google. 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839912 Share on other sites More sharing options...
MakAsrock Posted August 28, 2025 Share Posted August 28, 2025 8 hours ago, Max.1974 said: Hi @Matgen84 I think try fix clean git clone folder before, and fix errors about it. Im used run 2 build all default toolchain, compile everything. Im test 3 and 7, we get errors because need run option compiler first, so choose number 1) or 2) from menu. I adjust for not delete folder if exist Here in English my friend with or without git clone repo in $Home/ Just click twice and run (if you wanted in French tell me) Fixed ask about delete or not git clone Clover folder Clover Compiler Builder - English - ASK II.zip 3.54 MB · 2 downloads Could you add an optional download of the buildme file from my repository and replace the not quite correct native one with it? I was in a hurry and made mistakes in it. The new one has no more mistakes, and some nice innovations are present. Of course, I could do it myself, but this is your instrument and I don’t want to intermediate. The link to my github repository is in my profile. Thank you. 2 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839913 Share on other sites More sharing options...
Max.1974 Posted August 28, 2025 Share Posted August 28, 2025 5 horas atrás, Matgen84 disse: Hi @Max.1974 Thanks a lot. English version is enough, so French is not necessary. If I understand well, before option 3 and 7, we have to select option 1. BuildClover each time. So if BuildClover is included in option 3 and 7 in the script.... it's automatically do the job. Sorry for my bad English. For example, below. It can be the same for XCODE: selecione opt em "${options[@]}" fazer caso $opt in "construir Clover (cadeia de ferramentas padrão) ") construir trevo quebrar ;; "construir tudo (cadeia de ferramentas padrão) ") construir trevo BLC construir isso fazer V2 quebrar ;; "fazer Liberação (Fault Toolchain) ") makeRelease BLC construirPkg construir isso fazer V2 quebrar; "atualizar Clover ") atualizar o trevo quebrar ; "fazer pacote ----> construir trevo BLC construirPkg quebrar ;; "fazer iso "fazer isso "fazer Clover_V2") ---> construir Clover V2 quebrar fazer; fazer; "construir Clover (com XCode)") construir CloverXC construir Clover quebrar ;;; "construir tudo (com XCode))") construir CloverXC construir fazer fazer isso V2 quebrar ;; "fazer Liberação (com XCode)") makeReleaseXC BLC construirPkg construir isso fazer V2 quebrar ;; "construir o Clover com o HFSPlus") construir CloverHFSPlus quebrar ;; "Opções Extras") Adicional quebrar ;; "Saída") Saída 0 ;; *) eco "opção inválida $RESPLY" quebrar ;; Esac Pronto menu } Hi @Matgen84 Yes, the Slice and MakAsrock files can already work inside the git clone folder (src). The executable, In my case, it now checks if the required tools are installed and compiles everything that is necessary, such as GCC, through option 2 — default toolchain build all. I think compiling this way makes it easier for users who don’t have much experience or patience 😃 to wait for everything to install, but over time I can improve it if my knowledge allows. Try this more complete version: 3 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839914 Share on other sites More sharing options...
MakAsrock Posted August 28, 2025 Share Posted August 28, 2025 7 minutes ago, Max.1974 said: Hi @Matgen84 Yes, the Slice and MakAsrock files can already work inside the git clone folder (src). The executable, In my case, it now checks if the required tools are installed and compiles everything that is necessary, such as GCC, through option 2 — default toolchain build all. I think compiling this way makes it easier for users who don’t have much experience or patience 😃 to wait for everything to install, but over time I can improve it if my knowledge allows. Try this more complete version: By the way, my real name is Yitzhak Bronstein or YBronst for short. like on github. This account MacOSXer me too, but I stopped liking this nickname because Russian speakers have a bad association with it. 🙂 3 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839915 Share on other sites More sharing options...
Max.1974 Posted August 28, 2025 Share Posted August 28, 2025 Thanks @MakAsrock I will try git your buildme my friend but if you want my entire code too I post here ! Shalom! 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839916 Share on other sites More sharing options...
MakAsrock Posted August 28, 2025 Share Posted August 28, 2025 (edited) 1 hour ago, Max.1974 said: Thanks @MakAsrock I will try git your buildme my friend but if you want my entire code too I post here ! Shalom! Thanks, but I just wanted to correct my own annoying mistake, and this resulted in a fairly deep reworking of the code. And there is not enough time for everything. You can do it like this: # Download and update buildme read -p "Download and update buildme? (y/n): " -n 1 -r echo if [[ ! -d "$HOME/Downloads/ClovUtils" ]] && [[ $REPLY =~ ^[Yy]$ ]]; then if [[ ! -d "$HOME/Downloads/ClovUtils" ]]; then mkdir -p "$HOME/Downloads/ClovUtils" fi cd "$HOME/Downloads/ClovUtils" && curl -O https://raw.githubusercontent.com/YBronst/Asrock-Z690-PG-Reptide/066b59d532d04397eb4d11868d629e5747f54585/buildme.zip unzip -q buildme.zip && rm -r buildme.zip rm -rf __MACOSX xattr -d com.apple.quarantine "$HOME/Downloads/ClovUtils/buildme" 2>/dev/null || true cp -f "$HOME/Downloads/ClovUtils/buildme" "$REPO_DIR" fi Edited August 29, 2025 by MakAsrock 2 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839917 Share on other sites More sharing options...
Max.1974 Posted August 28, 2025 Share Posted August 28, 2025 (edited) 22 minutes ago, MakAsrock said: Thanks, but I just wanted to correct my own annoying mistake, and this resulted in a fairly deep reworking of the code. And there is not enough time for everything. You can do it like this: buildmel() { if [[ ! -d "$HOME/Downloads/ClovUtils" ]]; then mkdir -p "$HOME/Downloads/ClovUtils" fi cd "$HOME/Downloads/ClovUtils" && curl -sLq https://github.com/YBronst/Asrock-Z690-PG-Reptide/blob/main/buildme.zip -o buildme.zip unzip -q buildme.zip && rm -r buildme.zip xattr -d com.apple.quarantine "$HOME/Downloads/ClovUtils/buildme" 2>/dev/null || true cp -f "$HOME/Downloads/ClovUtils/buildme" "$REPO_DIR" } Hello my friend, I did exactly that: the script asks if it can clone from your GitHub and you just have to accept. I’m having connection issues on Insanely—I don’t know if others have the same problem, but I can’t even edit posts; it freezes so much that I have no idea what’s going on with posting, and it’s not my connection. I left out many tools because of that. Haha. But I did it and it still didn’t work with your buildme, option 7; it shows the same message, ‘Compile Clover First’. So I’m trying to compile with option 2 to see if, after that, option 7 will compile. Build Clover + Git YB.sh.zip Edited August 28, 2025 by Max.1974 2 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839918 Share on other sites More sharing options...
Max.1974 Posted August 29, 2025 Share Posted August 29, 2025 Hi @MakAsrock my friend, not finish compile with replace you binary buildme - Done - Build end time: 20:57:14, Aug.28 2025 Build total time: 00:00:46 -> CloverX64-RELEASE_GCC151-20250827141148-2fa933e-dirty.efi adding: Users/macmini/src/CloverBootloader/Build/CloverX64-RELEASE_GCC151-20250827141148-2fa933e-dirty.efi (deflated 53%) Compressing DUETEFIMainFv.FV ... Encoding Compressing DxeCore.efi ... Encoding Compressing DxeIpl.efi ... Encoding Generate Loader Image ... Created /Users/macmini/src/CloverBootloader/Build/Clover/RELEASE_GCC151/FV/Efildr64 879+0 records in 879+0 records out 450048 bytes transferred in 0.001959 secs (229733538 bytes/sec) Copy CloverEFI: -> boot6 Changing byte at 0xa9 of boot6 to show 6 as init message: 1+0 records in 1+0 records out 1 bytes transferred in 0.000022 secs (45455 bytes/sec) -> BOOTX64.efi -> CLOVERX64.efi Copy Mandatory drivers: -> XhciDxe.efi -> EnglishDxe.efi -> ApfsDriverLoader.efi -> FSInject.efi -> EnglishDxe.efi -> GrubEXFAT.efi -> GrubISO9660.efi -> GrubNTFS.efi -> GrubUDF.efi -> GrubUFS.efi -> GrubUFS2.efi -> CsmVideoDxe.efi -> EmuVariableUefi.efi -> NvmExpressDxe.efi -> OsxFatBinaryDrv.efi -> PartitionDxe.efi -> AudioDxe.efi -> Ps2MouseDxe.efi -> UsbKbDxe.efi -> UsbMouseDxe.efi -> AptioInputFix.efi -> ApfsDriverLoader.efi -> Fat.efi -> VBoxExt2.efi -> Ext4Dxe.efi -> VBoxIso9600.efi -> VBoxHfs.efi -> AppleKeyFeeder.efi -> HashServiceFix.efi -> OpenRuntime.efi Copy Applications: -> bdmesg.efi -> Shell64U.efi Done! Generating BootSectors [NASM] boot0af.s -> /Users/macmini/src/CloverBootloader/CloverPackage/CloverV2/BootSectors/boot0af [NASM] boot0ss.s -> /Users/macmini/src/CloverBootloader/CloverPackage/CloverV2/BootSectors/boot0ss [NASM] boot0md.s -> /Users/macmini/src/CloverBootloader/CloverPackage/CloverV2/BootSectors/boot0md [NASM] boot1h.s -> /Users/macmini/src/CloverBootloader/CloverPackage/CloverV2/BootSectors/boot1h [NASM] boot1h2.s -> /Users/macmini/src/CloverBootloader/CloverPackage/CloverV2/BootSectors/boot1h2 [NASM] boot1f32.s -> /Users/macmini/src/CloverBootloader/CloverPackage/CloverV2/BootSectors/boot1f32 [NASM] boot1f32alt.s -> /Users/macmini/src/CloverBootloader/CloverPackage/CloverV2/BootSectors/boot1f32alt [NASM] boot1x.s -> /Users/macmini/src/CloverBootloader/CloverPackage/CloverV2/BootSectors/boot1x [NASM] boot1xalt.s -> /Users/macmini/src/CloverBootloader/CloverPackage/CloverV2/BootSectors/boot1xalt Description.txt -> /Users/macmini/src/CloverBootloader/CloverPackage/CloverV2/BootSectors/Description.txt Installation.txt -> /Users/macmini/src/CloverBootloader/CloverPackage/CloverV2/BootSectors/Installation.txt Done! * Clover build process took 1m3s to complete... ./buildme: line 299: /Users/macmini/src/CloverBootloader/CloverPackage/BootLoaderChooser/BootX64.efi: No such file or directory Saving session... ...copying shared history... ...saving history...truncating history files... ...completed. [Processo concluído] 2 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839920 Share on other sites More sharing options...
MakAsrock Posted August 29, 2025 Share Posted August 29, 2025 1 hour ago, Max.1974 said: Hello my friend, I did exactly that: the script asks if it can clone from your GitHub and you just have to accept. I’m having connection issues on Insanely—I don’t know if others have the same problem, but I can’t even edit posts; it freezes so much that I have no idea what’s going on with posting, and it’s not my connection. I left out many tools because of that. Haha. But I did it and it still didn’t work with your buildme, option 7; it shows the same message, ‘Compile Clover First’. So I’m trying to compile with option 2 to see if, after that, option 7 will compile. Build Clover + Git YB.sh.zip 5.38 kB · 0 downloads OK. Thanks. It just turned out that curl can't download from the link provided. Only from the browser. However, from what was loaded in the browser, I extracted the correct link. But thanks anyway! 4 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839921 Share on other sites More sharing options...
Max.1974 Posted August 29, 2025 Share Posted August 29, 2025 I’m the one who’s thankful, and I’m at your disposal for anything you need with the code, my friend—anything to help improve the project. I ran a command and indeed it was replaced by your binary, but it didn’t finish in the end, it gave an error. 36 minutes ago, MakAsrock said: OK. Thanks. It just turned out that curl can't download from the link provided. Only from the browser. However, from what was loaded in the browser, I extracted the correct link. But thanks anyway! 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839922 Share on other sites More sharing options...
MakAsrock Posted August 29, 2025 Share Posted August 29, 2025 (edited) 19 hours ago, Matgen84 said: Hi @Max.1974 @MakAsrock Maybe, I made a mistake somewhere.... Create local git repo from scratch with Clover Compiler Builder. Select option 1 then option 7: Reveal hidden contents Select option 5: * Clover build process took 8m53s to complete... [CHECK XCODE] Status: gettext-0.22.4.tar.xz not found. % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 9.7M 100 9.7M 0 0 125k 0 0:01:19 0:01:19 --:--:-- 123k Warning: Got more output options than URLs - Creating new RAM disk Initialized /dev/rdisk8 as a 300 MB case-insensitive HFS Plus volume - gettext-0.22.4 extract... - gettext-0.22.4 configure... - gettext-0.22.4 make... - gettext-0.22.4 installing... - gettext-0.22.4 installed in /Users/mathieu/src/CloverBootloader/toolchain - Ejecting RAM disk "disk8" ejected. [BUILD PKG] The log will be created in the CloverPackage folder. mkdir ../sym: File exists at bin/po4a/lib/Locale/Po4a/TransTractor.pm line 459. make: *** [pkg] Error 17 Saving session... ...copying shared history... ...saving history...truncating history files... ...completed. Deleting expired sessions...none found. [Opération terminée] This only started last night, and yesterday morning everything was still fine. Jiff was active again. Hopefully it will be fixed soon, but with Clover Compiler Builder - English everything works fine. Jiff showed his activity again. Hopefully it will be fixed soon, but with Clover Compiler Builder - English everything works fine. Edited August 29, 2025 by MakAsrock 2 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1211/#findComment-2839925 Share on other sites More sharing options...
Recommended Posts