Matgen84 Posted May 20, 2024 Share Posted May 20, 2024 Hi @Slice @LAbyOne Can you update buildme script with that: curl -sLq https://github.com/jief666/BootloaderChooser/releases/latest > "${CLOVERROOT}"/CloverPackage/BootLoaderChooser/BootX64.efi instead of older bootloaderchooser version 0.5 ! Please I test to build Clover with GCC132 and GCC14, without success: not define toolchain error 😪 Have a nice day Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820322 Share on other sites More sharing options...
chris1111 Posted May 20, 2024 Share Posted May 20, 2024 (edited) @PG7 @Slice I was Able to install latest Sonoma 14.5 from Clover Duet A to Z I will explain to you all proceed when I am completly finish my setup So this is probably working from Big Sur 11 to Sonoma 14 Spoiler The package is ready https://github.com/chris1111/Clover-OCLP-Duet-Legacy Edited May 21, 2024 by chris1111 2 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820323 Share on other sites More sharing options...
Slice Posted May 20, 2024 Share Posted May 20, 2024 4 hours ago, Matgen84 said: Hi @Slice @LAbyOne Can you update buildme script with that: curl -sLq https://github.com/jief666/BootloaderChooser/releases/latest > "${CLOVERROOT}"/CloverPackage/BootLoaderChooser/BootX64.efi instead of older bootloaderchooser version 0.5 ! Please I test to build Clover with GCC132 and GCC14, without success: not define toolchain error 😪 Have a nice day Where is such a line to update? Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820328 Share on other sites More sharing options...
chris1111 Posted May 20, 2024 Share Posted May 20, 2024 @Slice read my PM please 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820329 Share on other sites More sharing options...
Matgen84 Posted May 21, 2024 Share Posted May 21, 2024 13 hours ago, Slice said: Where is such a line to update? Hi @Slice It is line 267 in buildme script. Thanks. Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820341 Share on other sites More sharing options...
Slice Posted May 21, 2024 Share Posted May 21, 2024 18 minutes ago, Matgen84 said: Hi @Slice It is line 267 in buildme script. Thanks. OK, but I tried "latest" and it is not working. The working solution is "1.4". Can you verify your line? Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820342 Share on other sites More sharing options...
chris1111 Posted May 21, 2024 Share Posted May 21, 2024 @PG7 Did you see this? 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820363 Share on other sites More sharing options...
LAbyOne Posted May 23, 2024 Share Posted May 23, 2024 On 5/20/2024 at 2:17 PM, Matgen84 said: Hi @Slice @LAbyOne Can you update buildme script with that: curl -sLq https://github.com/jief666/BootloaderChooser/releases/latest > "${CLOVERROOT}"/CloverPackage/BootLoaderChooser/BootX64.efi instead of older bootloaderchooser version 0.5 ! Please well into buildme the actual link to get the download is curl -sLq https://github.com/jief666/BootloaderChooser/releases/download/0.5/BootX64.efi > "${CLOVERROOT}"/CloverPackage/BootLoaderChooser/BootX64.efi so the updated one would normally look like this curl -sLq https://github.com/jief666/BootloaderChooser/releases/download/1.4/BootX64.efi > "${CLOVERROOT}"/CloverPackage/BootLoaderChooser/BootX64.efi On 5/20/2024 at 2:17 PM, Matgen84 said: Hi @Slice @LAbyOne I test to build Clover with GCC132 and GCC14, without success: not define toolchain error 😪 Have a nice day the actual defined default toolchain in clover source is GCC131 (so since GCC132 and GCC14 are defined nowhere, its only natural you get such an error) that said (tested from 10.13.6 to Monterey, as ventura or sonoma will be the same), build works perfectly either using gcc 13.0.3 or gcc 14.0.1 gcc 14.0.1 and binutils 2.42 need to be patched for backward OS compatibility (pre BS) otherwise build fail but i guess you'r not concerned by that. Have a nice day 2 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820397 Share on other sites More sharing options...
Matgen84 Posted May 25, 2024 Share Posted May 25, 2024 On 5/21/2024 at 8:27 AM, Slice said: OK, but I tried "latest" and it is not working. The working solution is "1.4". Can you verify your line? Hi @Slice It's working for me. "latest" is redirected to : https://github.com/jief666/BootloaderChooser/releases/tag/1.4. So if I don't mistaken, it took the latest tag ! 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820447 Share on other sites More sharing options...
Matgen84 Posted May 25, 2024 Share Posted May 25, 2024 (edited) On 5/23/2024 at 3:16 PM, LAbyOne said: well into buildme the actual link to get the download is curl -sLq https://github.com/jief666/BootloaderChooser/releases/download/0.5/BootX64.efi > "${CLOVERROOT}"/CloverPackage/BootLoaderChooser/BootX64.efi so the updated one would normally look like this curl -sLq https://github.com/jief666/BootloaderChooser/releases/download/1.4/BootX64.efi > "${CLOVERROOT}"/CloverPackage/BootLoaderChooser/BootX64.efi the actual defined default toolchain in clover source is GCC131 (so since GCC132 and GCC14 are defined nowhere, its only natural you get such an error) that said (tested from 10.13.6 to Monterey, as ventura or sonoma will be the same), build works perfectly either using gcc 13.0.3 or gcc 14.0.1 gcc 14.0.1 and binutils 2.42 need to be patched for backward OS compatibility (pre BS) otherwise build fail but i guess you'r not concerned by that. Have a nice day How to use gcc 14.1.0 for building. This version is marked in build_gcc14.sh. Thanks Edited May 25, 2024 by Matgen84 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820449 Share on other sites More sharing options...
Slice Posted May 25, 2024 Share Posted May 25, 2024 2 minutes ago, Matgen84 said: How to use gcc 14.1.0 for building. This version is marked in build_gcc14.sh. Thanks Same GCC131. 2 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820450 Share on other sites More sharing options...
Matgen84 Posted May 25, 2024 Share Posted May 25, 2024 1 hour ago, Slice said: Same GCC131. I don't understand what you means. Can you explain (I'm a newbie, sorry)? Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820452 Share on other sites More sharing options...
Slice Posted May 25, 2024 Share Posted May 25, 2024 12 hours ago, Matgen84 said: I don't understand what you means. Can you explain (I'm a newbie, sorry)? You should think nothing. Just use buildme. The default toolchain is GCC131. If you have no gcc then buildme will create new one from sources 14.1. Without asking you "do you want version 13 or 14?". With what version of xcode do you really use XCODE5 toolset? Did you ask Acidanthera about Xcode version? Toolset is toolset and it has own enumeration. 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820461 Share on other sites More sharing options...
chris1111 Posted May 26, 2024 Share Posted May 26, 2024 (edited) The Clover-OCLP-Duet-Legacy Github Repository is complete with a Emulate NVRAM page Software Update page Edited May 26, 2024 by chris1111 4 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820466 Share on other sites More sharing options...
Matgen84 Posted May 27, 2024 Share Posted May 27, 2024 (edited) On 5/25/2024 at 9:48 PM, Slice said: You should think nothing. Just use buildme. The default toolchain is GCC131. If you have no gcc then buildme will create new one from sources 14.1. Without asking you "do you want version 13 or 14?". With what version of xcode do you really use XCODE5 toolset? Did you ask Acidanthera about Xcode version? Toolset is toolset and it has own enumeration. Actually, I use XCODE 14.3 to build Clover. I sent you a MP before reading your comment ! Now I try to reproduce GCC building with your explanation. But if GCC exist, what is the correct procedure. EDIT: I launch buildme without args on my Monterey system: 1) build Clover (Default Toolchain) 8) build Clover (with XCode) 2) build all (Default Toolchain) 9) build all (with XCode) 3) make Release (Default Toolchain) 10) make Release (with XCode) 4) update Clover 11) build Clover with HFSPlus 5) make pkg 12) Extra Options 6) make iso 13) Exit 7) make Clover_V2 Please enter your choice: 1 [CHECK XCODE] - Building GCC 13.2.0 toolchain for x64 - to /Users/mathieu/src/Cloverbootloader/toolchain/cross/bin/x86_64-clover-linux-gnu Running on Mac OS X 12.7, with x86_64 architecture. Using Xcode SDK: /Applications/Xcode-14.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk Status: gmp-6.3.0 not found. % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 2045k 100 2045k 0 0 1655k 0 0:00:01 0:00:01 --:--:-- 1657k Warning: Got more output options than URLs Status: mpfr-4.2.1 not found. Edited May 27, 2024 by Matgen84 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820492 Share on other sites More sharing options...
Slice Posted May 27, 2024 Share Posted May 27, 2024 Quote Status: gmp-6.3.0 not found. The message mean it is not found in your computer so it will be downloaded from outer server. An next I see the success. 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820493 Share on other sites More sharing options...
Slice Posted May 30, 2024 Share Posted May 30, 2024 Now I have very restricted access to the forum so search me on Applelife.ru or on Github. Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820592 Share on other sites More sharing options...
Max.1974 Posted May 31, 2024 Share Posted May 31, 2024 On 5/27/2024 at 4:03 AM, Matgen84 said: Actually, I use XCODE 14.3 to build Clover. I sent you a MP before reading your comment ! Now I try to reproduce GCC building with your explanation. But if GCC exist, what is the correct procedure. EDIT: I launch buildme without args on my Monterey system: 1) build Clover (Default Toolchain) 8) build Clover (with XCode) 2) build all (Default Toolchain) 9) build all (with XCode) 3) make Release (Default Toolchain) 10) make Release (with XCode) 4) update Clover 11) build Clover with HFSPlus 5) make pkg 12) Extra Options 6) make iso 13) Exit 7) make Clover_V2 Please enter your choice: 1 [CHECK XCODE] - Building GCC 13.2.0 toolchain for x64 - to /Users/mathieu/src/Cloverbootloader/toolchain/cross/bin/x86_64-clover-linux-gnu Running on Mac OS X 12.7, with x86_64 architecture. Using Xcode SDK: /Applications/Xcode-14.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk Status: gmp-6.3.0 not found. % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 2045k 100 2045k 0 0 1655k 0 0:00:01 0:00:01 --:--:-- 1657k Warning: Got more output options than URLs Status: mpfr-4.2.1 not found. Hi @Matgen84 You can try first build all - is number 2) You can use Command Line Tools with xcode 15.2 if you not can finish compilation with Xcode 15.3, but I recommend you use Ventura or Sonoma. With Monterey the boot is very lower and lazy more than 30 seconds. With Ventura or Sonoma you can compile and get better boot faster, until 9 or 10 seconds. You can use available beta files to download from GitHub that is compile same away like in your machine, here: https://github.com/CloverHackyColor/CloverBootloader/actions/runs/9054001371 Need login account CloverV2-5158.zip Or use this file above dowloaded from Git Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820598 Share on other sites More sharing options...
jackacc Posted June 11, 2024 Share Posted June 11, 2024 macOS Sequoia BETA Full Installer https://swcdn.apple.com/content/downloads/50/33/052-49060-A_SUZPTRSXUG/rshd6um52uzcxnr1u85utqhl124vmsph1c/InstallAssistant.pkg 3 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820934 Share on other sites More sharing options...
Slice Posted June 11, 2024 Share Posted June 11, 2024 11 hours ago, jackacc said: macOS Sequoia BETA Full Installer https://swcdn.apple.com/content/downloads/50/33/052-49060-A_SUZPTRSXUG/rshd6um52uzcxnr1u85utqhl124vmsph1c/InstallAssistant.pkg I install it by Clover 5158+. 5159 will be soon. CLOVERX64.efi.zip 9 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2820979 Share on other sites More sharing options...
Max.1974 Posted June 13, 2024 Share Posted June 13, 2024 Here everything works fine, Sequoia and Sonoma, using a new Clover 5159 (commit 30b3ac544), and compiled with Xcode 15.1 and command line tools 15.1 too. 7 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2821101 Share on other sites More sharing options...
Matgen84 Posted June 20, 2024 Share Posted June 20, 2024 Hi @Slice Thanks for release 5159 😊 Could you add os_sequoia to the list of os icons supported, please. 3 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2821470 Share on other sites More sharing options...
MaLd0n Posted June 20, 2024 Share Posted June 20, 2024 Slice, Clover is still amazing. Sequoia works with a fluidity that impresses me. 8 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2821478 Share on other sites More sharing options...
Stefanalmare Posted June 20, 2024 Share Posted June 20, 2024 36 minutes ago, MaLd0n said: Slice, Clover is still amazing. Sequoia works with a fluidity that impresses me. True! 5 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2821480 Share on other sites More sharing options...
Slice Posted June 20, 2024 Share Posted June 20, 2024 11 hours ago, Matgen84 said: Hi @Slice Thanks for release 5159 😊 Could you add os_sequoia to the list of os icons supported, please. Already done. 7 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/1194/#findComment-2821507 Share on other sites More sharing options...
Recommended Posts