Regi Yassin Posted May 17, 2019 Share Posted May 17, 2019 On 3/30/2019 at 5:40 AM, apianti said: Oh you can remove those two lines that provide the check for EdkCompabilityPkg, the problem was with the update.sh script in clover that this script uses to get the update list. I fixed that by removing EdkCompatibilityPkg from it. what about OptionRomPkg? i have error about it. forced to use local update.sh and remove OptionRomPkg am i doing it right? Link to comment Share on other sites More sharing options...
Slice Posted May 18, 2019 Share Posted May 18, 2019 22 hours ago, Regi Yassin said: what about OptionRomPkg? i have error about it. forced to use local update.sh and remove OptionRomPkg am i doing it right? OptionRomPkg never used for Clover. 1 Link to comment Share on other sites More sharing options...
stinga11 Posted May 19, 2019 Share Posted May 19, 2019 SAludos, I can not compile clover. Someone can give detailed instructions on how to remove OptionRomPkg from the script in order to compile Clover. Link to comment Share on other sites More sharing options...
Slice Posted May 20, 2019 Share Posted May 20, 2019 ./ebuild.sh 2 Link to comment Share on other sites More sharing options...
Matgen84 Posted May 20, 2019 Share Posted May 20, 2019 On 5/18/2019 at 1:11 PM, Slice said: OptionRomPkg never used for Clover. 1 hour ago, Slice said: ./ebuild.sh Hi Slice, Could you remove OptionRomPkg from update.sh from Source? Thanks Link to comment Share on other sites More sharing options...
Slice Posted May 20, 2019 Share Posted May 20, 2019 5 minutes ago, Matgen84 said: Hi Slice, Could you remove OptionRomPkg from update.sh from Source? Thanks OK, done. 2 Link to comment Share on other sites More sharing options...
Matgen84 Posted May 20, 2019 Share Posted May 20, 2019 16 hours ago, stinga11 said: SAludos, I can not compile clover. Someone can give detailed instructions on how to remove OptionRomPkg from the script in order to compile Clover. Hi You have to remove only one word in Build_Clover.command. See below Clover can be build with or without svn up warning 1 Link to comment Share on other sites More sharing options...
stinga11 Posted May 20, 2019 Share Posted May 20, 2019 Hi Guys, Now I have another problem. ================================================================================ Running from: macOS 10.13.6 Xcode 10.1 Build version 10B61 <-------------------------------------------------- ================================================================================ Compiler settings <-------------------------------------------------- Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/4.2.1 Apple LLVM version 10.0.0 (clang-1000.11.45.5) Target: x86_64-apple-darwin17.7.0 Thread model: posix InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin <-------------------------------------------------- ================================================================================ BUILDTOOL is XCODE8 <-------------------------------------------------- ================================================================================ nasm check: <-------------------------------------------------- NASM version 2.14.02 compiled on Dec 26 2018 ================================================================================ gettext check: <-------------------------------------------------- gettext not found.. Status: gettext-latest.tar.xz not found. % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 Not Found Link to comment Share on other sites More sharing options...
cecekpawon Posted May 20, 2019 Share Posted May 20, 2019 Try to "export GETTEXT_VERSION=gettext-0.20.1" before running buildgettext.sh Link to comment Share on other sites More sharing options...
Matgen84 Posted May 21, 2019 Share Posted May 21, 2019 8 hours ago, stinga11 said: Hi Guys, Now I have another problem. ================================================================================ Running from: macOS 10.13.6 Xcode 10.1 Build version 10B61 <-------------------------------------------------- ================================================================================ Compiler settings <-------------------------------------------------- Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/4.2.1 Apple LLVM version 10.0.0 (clang-1000.11.45.5) Target: x86_64-apple-darwin17.7.0 Thread model: posix InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin <-------------------------------------------------- ================================================================================ BUILDTOOL is XCODE8 <-------------------------------------------------- ================================================================================ nasm check: <-------------------------------------------------- NASM version 2.14.02 compiled on Dec 26 2018 ================================================================================ gettext check: <-------------------------------------------------- gettext not found.. Status: gettext-latest.tar.xz not found. % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 Not Found @cecekpawon have a good idea. You can also follow script instruction: remove gettext from /bin and relaunch the script: Link to comment Share on other sites More sharing options...
stinga11 Posted May 21, 2019 Share Posted May 21, 2019 15 hours ago, Matgen84 said: @cecekpawon have a good idea. You can also follow script instruction: remove gettext from /bin and relaunch the script: I remove this part # ...gettext and mtoc does nothing in Linux because we cannot compile the .pkg if [[ "$SYSNAME" == Darwin ]]; then printHeader "gettext check:" if needGETTEXT && [[ ! -x "${TOOLCHAIN_DIR}"/bin/gettext ]]; then # buildgettext.sh is buggie: # suppose during the download a problem occour you can have an incomplete "gettext-latest.tar.gz" from a previous execution, # but buildgettext.sh think that is already downloaded and will try to decompress this incomplete archive, always failing! # That's why we remove the archive! if [[ -f "${DIR_DOWNLOADS}"/gettext-latest.tar.gz ]]; then rm -f "${DIR_DOWNLOADS}"/gettext-latest.tar.gz; fi doSomething --run-script "${DIR_MAIN}"/edk2/Clover/buildgettext.sh fi printHeader "mtoc check:" if [[ ! -x "${TOOLCHAIN_DIR}/bin/mtoc.NEW" ]]; then printWarning "mtoc not found, installing...\n" doSomething --run-script "${DIR_MAIN}"/edk2/Clover/buildmtoc.sh echo "mtoc successfully installed in ${TOOLCHAIN_DIR}/bin." else echo "mtoc found in ${TOOLCHAIN_DIR}/bin." fi export MTOC_PREFIX="${TOOLCHAIN_DIR}/bin/" printThickLine; echo fi But now I have the following error ================================================================================ Running from: macOS 10.13.6 Xcode 10.1 Build version 10B61 <-------------------------------------------------- ================================================================================ Compiler settings <-------------------------------------------------- Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/4.2.1 Apple LLVM version 10.0.0 (clang-1000.11.45.5) Target: x86_64-apple-darwin17.7.0 Thread model: posix InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin <-------------------------------------------------- ================================================================================ BUILDTOOL is XCODE8 <-------------------------------------------------- ================================================================================ nasm check: <-------------------------------------------------- NASM version 2.14.02 compiled on Dec 26 2018 Loading previous configuration from /Users/exzo/src/edk2/Conf/BuildEnv.sh WORKSPACE: /Users/exzo/src/edk2 EDK_TOOLS_PATH: /Users/exzo/src/edk2/BaseTools CONF_PATH: /Users/exzo/src/edk2/Conf ================================================================================ Building AptioFixPkg <-------------------------------------------------- Build environment: Darwin-17.7.0-x86_64-i386-64bit Build start time: 15:59:51, May.21 2019 WORKSPACE = /Users/exzo/src/edk2 EDK_TOOLS_PATH = /Users/exzo/src/edk2/BaseTools CONF_PATH = /Users/exzo/src/edk2/Conf Architecture(s) = X64 Build target = RELEASE Toolchain = XCODE8 Active Platform = /Users/exzo/src/edk2/AptioFixPkg/AptioFixPkg.dsc Processing meta-data .. done! Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiUsbLib/UefiUsbLib.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf [X64] Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf [X64] Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf [X64] Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcTimerLib/OcTimerLib.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiLib/UefiLib.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf [X64] [CC] Hid Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf [X64] [CC] DriverEntryPoint Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf [X64] Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcDebugLogLib/OcDebugLogLib.inf [X64] make: Nothing to be done for `tbuild'. [CC] UefiHiiServicesLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf [X64] [SLINK] UefiDriverEntryPoint Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePrintLib/BasePrintLib.inf [X64] [SLINK] UefiHiiServicesLib make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseLib/BaseLib.inf [X64] [CC] OcTimerLib make: Nothing to be done for `tbuild'. [CC] UefiBootServicesTableLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf [X64] [CC] UefiRuntimeServicesTableLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib16550.inf [X64] [CC] UsbDxeLib [SLINK] OcTimerLib [SLINK] UefiBootServicesTableLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf [X64] [SLINK] UefiRuntimeServicesTableLib Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcDataHubLib/OcDataHubLib.inf [X64] make: Nothing to be done for `tbuild'. [SLINK] UefiUsbLib Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcStringLib/OcStringLib.inf [X64] [CC] UefiLibPrint Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcMiscLib/OcMiscLib.inf [X64] [CC] OcDebugLogLib make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcFileLib/OcFileLib.inf [X64] [CC] MemoryAllocationLib Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcGuardLib/OcGuardLib.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf [X64] [SLINK] UefiMemoryAllocationLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcDevicePathLib/OcDevicePathLib.inf [X64] [CC] BaseSerialPortLib16550 [CC] DevicePathUtilities make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/BasePlatformHookLibNull/BasePlatformHookLibNull.inf [X64] [CC] UefiNotTiano make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf [X64] [SLINK] BaseSerialPortLib16550 Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcMachoLib/OcMachoLib.inf [X64] [CC] Base64Decode Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcDeviceTreeLib/OcDeviceTreeLib.inf [X64] [CC] OcDataHubLib make: Nothing to be done for `tbuild'. [CC] FileProtocol Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseCpuLib/BaseCpuLib.inf [X64] [CC] BitOverflow make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseRngLib/BaseRngLib.inf [X64] [CC] HiiLib make: Nothing to be done for `tbuild'. [CC] ApplicationEntryPoint [CC] OcLog [CC] DebugHelp [CC] Canary [CC] GetFileInfo [SLINK] UefiApplicationEntryPoint [SLINK] OcDebugLogLib [CC] OcDevicePathLib [CC] SafeString [CC] DataHub [SLINK] OcDevicePathLib [CC] UefiDriverModel [CC] HiiString [SLINK] OcDataHubLib [CC] DevicePathToText [CC] NativeOverflow [CC] OcDeviceTreeLib [CC] GetMemoryMap [CC] GetVolumeLabel [SLINK] OcDeviceTreeLib [CC] String [CC] HiiLanguage [CC] Console [SLINK] UefiHiiLib [CC] TripleOverflow [CC] LegacyRegionLock /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (LongJump.obj) in output file used for input files: /Users/exzo/src/edk2/Build/AptioFixPkg/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/LongJump.obj and: /Users/exzo/src/edk2/Build/AptioFixPkg/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/LongJump.obj (due to use of basename, truncation, blank padding or duplicate input files) /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (SetJump.obj) in output file used for input files: /Users/exzo/src/edk2/Build/AptioFixPkg/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/SetJump.obj and: /Users/exzo/src/edk2/Build/AptioFixPkg/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/SetJump.obj (due to use of basename, truncation, blank padding or duplicate input files) /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (SwitchStack.obj) in output file used for input files: /Users/exzo/src/edk2/Build/AptioFixPkg/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/SwitchStack.obj and: /Users/exzo/src/edk2/Build/AptioFixPkg/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/SwitchStack.obj (due to use of basename, truncation, blank padding or duplicate input files) [CC] LocateFileSystem [SLINK] BaseLib [CC] LegacyRegionUnLock [CC] OpenFileByDp [CC] UbsanPrintf [CC] UefiLib [CC] LogBootOrder [CC] ReadFile [SLINK] OcFileLib [CC] DevicePathFromText [CC] Acpi [CC] LogHexDump [SLINK] UefiLib [CC] UefiDevicePathLib [CC] Ubsan [SLINK] UefiDevicePathLib [SLINK] OcGuardLib [CC] ReleaseUsbOwnership [CC] NullTextOutput [CC] UninstallAllProtocolInterfaces [SLINK] OcMiscLib Building ... /Users/exzo/src/edk2/AptioFixPkg/Application/CleanNvram/CleanNvram.inf [X64] Building ... /Users/exzo/src/edk2/AptioFixPkg/Application/VerifyMsrE2/VerifyMsrE2.inf [X64] Building ... /Users/exzo/src/edk2/AptioFixPkg/Platform/AptioMemoryFix/AptioMemoryFix.inf [X64] Building ... /Users/exzo/src/edk2/AptioFixPkg/Platform/AptioInputFix/AptioInputFix.inf [X64] [CC] CleanNvram [CC] AptioMemoryFix [CC] VerifyMsrE2 [CC] AptioInput [CC] AutoGen [SLINK] CleanNvram [CC] AutoGen [CC] BootArgs [SLINK] VerifyMsrE2 [CC] AIK [CC] AIKData [CC] BootFixes [CC] AIKMap [CC] CustomSlide [CC] AIKShim [DLINK1] VerifyMsrE2 [MTOC] VerifyMsrE2 [CC] AIKSource [CC] MemoryMap [DLINK1] CleanNvram [MTOC] CleanNvram [GENFW] VerifyMsrE2 [GENFW] CleanNvram [CC] AIKTarget [CC] RtShims [CC] AIKTranslate [CC] ServiceOverrides [CC] AIM [CC] VMem [CC] AIT [CC] UmmMalloc [CC] AutoGen [SLINK] AptioInputFix [NASM] AsmFuncs [NASM] AsmRtShims [CC] AutoGen [DLINK1] AptioInputFix [MTOC] AptioInputFix [SLINK] AptioMemoryFix [GENFW] AptioInputFix [DLINK1] AptioMemoryFix [MTOC] AptioMemoryFix [GENFW] AptioMemoryFix - Done - Build end time: 15:59:57, May.21 2019 Build total time: 00:00:06 ================================================================================ Building AppleSupportPkg <-------------------------------------------------- Build environment: Darwin-17.7.0-x86_64-i386-64bit Build start time: 15:59:57, May.21 2019 WORKSPACE = /Users/exzo/src/edk2 EDK_TOOLS_PATH = /Users/exzo/src/edk2/BaseTools CONF_PATH = /Users/exzo/src/edk2/Conf Architecture(s) = X64 Build target = RELEASE Toolchain = XCODE8 Active Platform = /Users/exzo/src/edk2/AppleSupportPkg/AppleSupportPkg.dsc Processing meta-data ... done! Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/MdePkg/Library/DxeServicesLib/DxeServicesLib.inf [X64] Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcAppleImageVerificationLib/OcAppleImageVerificationLib.inf [X64] [CC] DriverEntryPoint Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/DxeHobLib/DxeHobLib.inf [X64] [SLINK] UefiDriverEntryPoint Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcAppleKeysLib/OcAppleKeysLib.inf [X64] Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcCryptoLib/OcCryptoLib.inf [X64] Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcTimerLib/OcTimerLib.inf [X64] [CC] PeCoffExtraActionLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiLib/UefiLib.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf [X64] [SLINK] PeCoffExtraActionLibNull Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseLib/BaseLib.inf [X64] Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcDebugLogLib/OcDebugLogLib.inf [X64] [CC] OcAppleKeysLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf [X64] [CC] BasePeCoff [CC] DxeServicesLib [SLINK] OcAppleKeysLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf [X64] [CC] HobLib [CC] OcAppleImageVerification [CC] UefiBootServicesTableLib [CC] OcTimerLib [CC] UefiRuntimeServicesTableLib [CC] PeCoffLoaderEx make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf [X64] [SLINK] DxeHobLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf [X64] [SLINK] OcAppleImageVerificationLib [SLINK] UefiBootServicesTableLib [SLINK] OcTimerLib Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcGuardLib/OcGuardLib.inf [X64] [SLINK] UefiRuntimeServicesTableLib [SLINK] BasePeCoffLib make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePrintLib/BasePrintLib.inf [X64] [CC] UefiLibPrint [CC] Allocate Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib16550.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf [X64] [CC] Aes [SLINK] DxeServicesLib [CC] OcDebugLogLib Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcDataHubLib/OcDataHubLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcStringLib/OcStringLib.inf [X64] Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcMiscLib/OcMiscLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcFileLib/OcFileLib.inf [X64] [CC] DevicePathUtilities Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf [X64] [CC] MemoryAllocationLib make: Nothing to be done for `tbuild'. [CC] BitOverflow Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcDevicePathLib/OcDevicePathLib.inf [X64] [SLINK] UefiMemoryAllocationLib make: Nothing to be done for `tbuild'. [CC] UefiNotTiano Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/BasePlatformHookLibNull/BasePlatformHookLibNull.inf [X64] [CC] Rsa2048Sha256 [CC] BaseSerialPortLib16550 make: Nothing to be done for `tbuild'. Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcRtcLib/OcRtcLib.inf [X64] Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf [X64] [SLINK] BaseSerialPortLib16550 Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiUsbLib/UefiUsbLib.inf [X64] [CC] Base64Decode [CC] Canary [CC] FileProtocol [CC] OcDataHubLib [CC] OcLog [SLINK] OcDebugLogLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf [X64] [CC] OcRtcLib [CC] Sha256 [CC] NativeOverflow [CC] DebugHelp [SLINK] OcRtcLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf [X64] [CC] GetFileInfo [CC] Hid [CC] OcDevicePathLib [CC] DataHub [SLINK] OcDevicePathLib Building ... /Users/exzo/src/edk2/AppleSupportPkg/Library/AppleEventLib/AppleEventLib.inf [X64] [CC] BaseReportStatusCodeLib [CC] UefiDriverModel [SLINK] OcDataHubLib Building ... /Users/exzo/src/edk2/OcSupportPkg/Library/OcPngLib/OcPngLib.inf [X64] [SLINK] BaseReportStatusCodeLibNull [CC] GetMemoryMap [CC] TripleOverflow [CC] SafeString [CC] UefiHiiServicesLib [CC] DevicePathToText [CC] GetVolumeLabel [CC] UsbDxeLib [SLINK] UefiHiiServicesLib [CC] AppleEventLib [SLINK] UefiUsbLib [SLINK] AppleEventLib [CC] Md5 [CC] LegacyRegionLock [CC] Console [CC] LocateFileSystem [CC] String [CC] UbsanPrintf /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (LongJump.obj) in output file used for input files: /Users/exzo/src/edk2/Build/AppleSupportPkg/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/LongJump.obj and: /Users/exzo/src/edk2/Build/AppleSupportPkg/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/LongJump.obj (due to use of basename, truncation, blank padding or duplicate input files) /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (SetJump.obj) in output file used for input files: /Users/exzo/src/edk2/Build/AppleSupportPkg/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/SetJump.obj and: /Users/exzo/src/edk2/Build/AppleSupportPkg/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/SetJump.obj (due to use of basename, truncation, blank padding or duplicate input files) /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (SwitchStack.obj) in output file used for input files: /Users/exzo/src/edk2/Build/AppleSupportPkg/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/SwitchStack.obj and: /Users/exzo/src/edk2/Build/AppleSupportPkg/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/SwitchStack.obj (due to use of basename, truncation, blank padding or duplicate input files) [CC] Sha1 [SLINK] BaseLib [CC] LegacyRegionUnLock [CC] OpenFileByDp [SLINK] OcCryptoLib [CC] HiiLib [CC] LogBootOrder [CC] UefiLib [CC] ReadFile [SLINK] OcFileLib [CC] HiiString [CC] Ubsan [CC] DevicePathFromText [CC] LogHexDump [SLINK] OcGuardLib [CC] Acpi [SLINK] UefiLib [CC] HiiLanguage [SLINK] UefiHiiLib [CC] UefiDevicePathLib [CC] ReleaseUsbOwnership [SLINK] UefiDevicePathLib [CC] NullTextOutput [CC] UninstallAllProtocolInterfaces [CC] lodepng [SLINK] OcMiscLib Building ... /Users/exzo/src/edk2/AppleSupportPkg/Platform/VBoxHfs/VBoxHfs.inf [X64] Building ... /Users/exzo/src/edk2/AppleSupportPkg/Platform/VirtualSmc/VirtualSmc.inf [X64] Building ... /Users/exzo/src/edk2/AppleSupportPkg/Platform/AppleUsbKbDxe/UsbKbDxe.inf [X64] Building ... /Users/exzo/src/edk2/AppleSupportPkg/Platform/ApfsDriverLoader/ApfsDriverLoader.inf [X64] [CC] OcPng Building ... /Users/exzo/src/edk2/AppleSupportPkg/Platform/AppleImageLoader/AppleImageLoader.inf [X64] [SLINK] OcPngLib Building ... /Users/exzo/src/edk2/AppleSupportPkg/Platform/AppleUiSupport/AppleUiSupport.inf [X64] [CC] VirtualSmc [CC] fsw_core [CC] AppleImageLoader [CC] ApfsDriverLoader [CC] EfiKey [CC] AppleEvent [CC] AutoGen [CC] EfiComponentName [SLINK] VirtualSmc [CC] AppleKey [CC] fsw_efi [CC] EventQueue [CC] AutoGen [CC] Image [SLINK] ApfsDriverLoader [CC] fsw_efi_lib [CC] MemoryProtection [CC] KeyHandler [CC] KeyBoard [CC] AutoGen [SLINK] AppleImageLoader [CC] ComponentName [CC] fsw_hfs [CC] PointerHandler [DLINK1] VirtualSmc [MTOC] VirtualSmc [CC] AutoGen [GENFW] VirtualSmc [SLINK] UsbKbDxe [CC] AppleKeyMap [CC] fsw_lib [CC] AppleKeyMapAggregator [DLINK1] AppleImageLoader [MTOC] AppleImageLoader [GENFW] AppleImageLoader [CC] AppleUserInterfaceTheme [CC] AutoGen [DLINK1] ApfsDriverLoader [SLINK] VBoxHfs [MTOC] ApfsDriverLoader [GENFW] ApfsDriverLoader [CC] AppleImageConversion [CC] FirmwareVolumeInject [CC] FvOnFv2Thunk [DLINK1] UsbKbDxe [MTOC] UsbKbDxe [GENFW] UsbKbDxe [CC] HashServices [CC] UnicodeCollationEng [CC] AppleUiSupport [CC] AutoGen [DLINK1] VBoxHfs [MTOC] VBoxHfs [SLINK] AppleUiSupport [GENFW] VBoxHfs [DLINK1] AppleUiSupport [MTOC] AppleUiSupport [GENFW] AppleUiSupport - Done - Build end time: 16:00:04, May.21 2019 Build total time: 00:00:07 ================================================================================ Building Clover <-------------------------------------------------- ================================================================================ boot6 <-------------------------------------------------- TOOLCHAIN_DIR: /Users/exzo/src/opt/local MTOC_PREFIX: /Users/exzo/src/opt/local/bin/ NASM_PREFIX: /Users/exzo/src/opt/local/bin/ NASM_VER: 2.14.02 Building from: /Users/exzo/src/edk2 Running edk2 build for CloverX64 using the command: build -D NO_GRUB_DRIVERS_EMBEDDED --conf=/Users/exzo/src/edk2/Conf -D USE_LOW_EBDA -p Clover/Clover.dsc -a X64 -b RELEASE -t XCODE8 -n 13 Build environment: Darwin-17.7.0-x86_64-i386-64bit Build start time: 16:00:04, May.21 2019 WORKSPACE = /Users/exzo/src/edk2 EDK_TOOLS_PATH = /Users/exzo/src/edk2/BaseTools CONF_PATH = /Users/exzo/src/edk2/Conf Architecture(s) = X64 Build target = RELEASE Toolchain = XCODE8 Active Platform = /Users/exzo/src/edk2/Clover/Clover.dsc Flash Image Definition = /Users/exzo/src/edk2/Clover/Clover.fdf Processing meta-data ........... done! Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePrintLib/BasePrintLib.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseLib/BaseLib.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf [X64] [CC] IoLibMmioBuffer [CC] BaseReportStatusCodeLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseCpuLib/BaseCpuLib.inf [X64] [SLINK] BaseReportStatusCodeLibNull Building ... /Users/exzo/src/edk2/Clover/Library/WaveLib/WaveLib.inf [X64] Building ... /Users/exzo/src/edk2/Clover/Library/OpensslLib/OpensslLibNull.inf [X64] [CC] SetMem [CC] DebugLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiMemoryLib/UefiMemoryLib.inf [X64] [CC] CheckSum [SLINK] BaseDebugLibNull Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf [X64] Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf [X64] Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf [X64] Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf [X64] [CC] PcdLib [CC] ScanMem64Wrapper [CC] SwitchStack [CC] IoHighLevel [SLINK] BasePcdLibNull Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf [X64] [CC] OpensslLibNull /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/Clover/Library/OpensslLib/OpensslLibNull/OUTPUT/OpensslLibNull.obj has no symbols warning: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning for library: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/Clover/Library/OpensslLib/OpensslLibNull/OUTPUT/OpensslLib.lib the table of contents is empty (no object file members in the library define global symbols) [SLINK] OpensslLib Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf [X64] [CC] WaveLib [CC] ScanMem64Wrapper [CC] ScanMem32Wrapper [SLINK] WaveLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf [X64] [CC] SwapBytes64 [CC] UefiShellInstall1CommandsLib [CC] IoLibGcc [SLINK] UefiShellInstall1CommandsLib Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.inf [X64] [CC] PrintLibInternal [CC] ScanMem16Wrapper [CC] SwapBytes32 [CC] ScanMem32Wrapper [CC] IoLib [NASM] CpuSleep [CC] ScanMem8Wrapper [CC] SwapBytes16 [CC] PrintLib [CC] SetSize [CC] UefiShellLevel1CommandsLib [SLINK] BasePrintLib Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf [X64] [CC] Type [CC] ScanMem16Wrapper [CC] ZeroMemWrapper [CC] LongJump [CC] UefiShellLevel2CommandsLib [CC] CompareMemWrapper [CC] SetJump [CC] ScanMem8Wrapper [CC] Connect [CC] Exit [CC] SetMem64Wrapper [NASM] CpuFlushTlb [CC] RShiftU64 [CC] Touch [SLINK] BaseCpuLib Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf [X64] [NASM] IoFifo [SLINK] BaseIoLibIntrinsic Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf [X64] [CC] ZeroMemWrapper [CC] SetMem32Wrapper [CC] RRotU64 [CC] Comp [CC] Goto [CC] SetMem16Wrapper [CC] RRotU32 [CC] CompareMemWrapper [CC] Devices [CC] Ver [CC] UefiHiiServicesLib [SLINK] UefiHiiServicesLib Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellNetwork2CommandsLib/UefiShellNetwork2CommandsLib.inf [X64] [CC] SetMemWrapper [CC] MultU64x64 [CC] TimeDate [CC] Mode [CC] SetMem64Wrapper [CC] CopyMemWrapper [CC] MultU64x32 [CC] UefiShellLevel3CommandsLib [CC] IsZeroBufferWrapper [CC] OpenInfo [CC] UefiShellNetwork2CommandsLib [CC] MultS64x64 [CC] SetMem32Wrapper [CC] UefiShellBcfgCommandLib [CC] Load [CC] ModU64x32 [CC] UefiShellCommandLib [CC] MemLibGeneric [CC] DxeNetLib [CC] Cls [CC] SetMem16Wrapper [CC] AutoGen [CC] LShiftU64 [SLINK] UefiShellBcfgCommandLib [CC] Disconnect Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf [X64] [CC] MemMap [CC] MemLibGuid [CC] SetMemWrapper [CC] LRotU64 [CC] If [CC] CopyMem [CC] Alias [CC] LRotU32 [SLINK] BaseMemoryLib Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellLib/UefiShellLib.inf [X64] [CC] CopyMemWrapper [CC] Reconnect [CC] Ls [CC] UefiShellNetwork1CommandsLib [CC] LowBitSet64 [CC] Ping6 [CC] IsZeroBufferWrapper [CC] Echo [CC] LowBitSet32 [CC] Unload [CC] ConsistMapping [CC] HighBitSet64 [SLINK] UefiShellCommandLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf [X64] [CC] For [CC] MemLibGeneric [CC] Pause [CC] NetBuffer [CC] HighBitSet32 [SLINK] DxeNetLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf [X64] [CC] ApplicationEntryPoint [CC] GetPowerOfTwo64 [CC] Compress [CC] MemLibGuid [SLINK] UefiApplicationEntryPoint Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiUsbLib/UefiUsbLib.inf [X64] [CC] Shift [CC] DrvDiag [CC] GetMtc [CC] Map [CC] GetPowerOfTwo32 [CC] MemLib [CC] Ping [SLINK] UefiMemoryLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf [X64] [CC] DivU64x64Remainder [CC] Hid [CC] Stall [CC] EfiCompress [CC] Reset [CC] UefiFileHandleLib [CC] Ifconfig6 [CC] DivU64x32Remainder [SLINK] UefiFileHandleLib Building ... /Users/exzo/src/edk2/Clover/Library/VideoBiosPatchLib/VideoBiosPatchLib.inf [X64] [CC] Help [CC] DivU64x32 [CC] UsbDxeLib [CC] AutoGen [SLINK] UefiUsbLib Building ... /Users/exzo/src/edk2/Clover/Library/MemLogLibDefault/MemLogLibDefault.inf [X64] [CC] AutoGen [SLINK] UefiShellNetwork2CommandsLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf [X64] [CC] DivS64x64Remainder [CC] Set [CC] EfiDecompress [SLINK] UefiShellLevel1CommandsLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf [X64] [CC] UefiScsiLib [SLINK] UefiScsiLib Building ... /Users/exzo/src/edk2/Clover/Library/OsxBdsPlatformLib/PlatformBds.inf [X64] [CC] VideoBiosPatchLib [CC] ARShiftU64 [CC] UefiHandleParsingLib [CC] AutoGen [CC] PciLib [SLINK] UefiShellLevel3CommandsLib Building ... /Users/exzo/src/edk2/Clover/Library/GenericBdsLib/GenericBdsLib.inf [X64] [SLINK] BasePciLibCf8 [CC] Dh Building ... /Users/exzo/src/edk2/Clover/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf [X64] [CC] MkDir [CC] MemLogLib [CC] BitField [SLINK] MemLogLibDefault Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf [X64] [CC] Dmem [CC] Ifconfig [CC] AutoGen [CC] PciCf8Lib [SLINK] UefiHandleParsingLib Building ... /Users/exzo/src/edk2/MdePkg/Library/DxePcdLib/DxePcdLib.inf [X64] [SLINK] BasePciCf8Lib [CC] CpuDeadLoop Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf [X64] [CC] LzmaDecompress [CC] 915resolution [CC] DevicePath [CC] AutoGen [CC] Cpu [CC] Cd [SLINK] UefiShellNetwork1CommandsLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf [X64] [CC] Drivers [CC] LoadPciRom [CC] LinkedList [CC] UefiShellLib [CC] edid [SLINK] UefiShellLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf [X64] [SLINK] VideoBiosPatchLib [CC] BmConnect Building ... /Users/exzo/src/edk2/Clover/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf [X64] [CC] DxePcdLib [CC] BdsPlatform [CC] CustomizedDisplayLib [SLINK] DxePcdLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf [X64] [CC] DevTree [CC] UefiHiiServicesLib [CC] UefiSortLib [SLINK] UefiHiiServicesLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf [X64] [SLINK] UefiSortLib [CC] BdsConnect Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf [X64] [CC] Cp [CC] PlatformData [SLINK] DuetBds Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf [X64] [CC] Mm [CC] BmMisc [CC] DxeSecurityManagementLib [SLINK] DxeSecurityManagementLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf [X64] [CC] DxeCapsuleLibNull [SLINK] DxeCapsuleLibNull Building ... /Users/exzo/src/edk2/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf [X64] [CC] LzFind [CC] AuthVariableLibNull [CC] Parse [CC] TpmMeasurementLibNull [SLINK] AuthVariableLibNull Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf [X64] [CC] VarCheckLib [CC] CustomizedDisplayLibInternal [SLINK] TpmMeasurementLibNull Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf [X64] [SLINK] VarCheckLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf [X64] [CC] DxeServicesTableLib [CC] SetVar [SLINK] DxeServicesTableLib Building ... /Users/exzo/src/edk2/MdePkg/Library/DxeHobLib/DxeHobLib.inf [X64] [CC] InternalGetSpinLockProperties [CC] AutoGen [CC] BmConsole [SLINK] CustomizedDisplayLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf [X64] [CC] GccInline [CC] DriverEntryPoint [CC] SafeString [CC] DrvCfg [CC] RuntimeLib [SLINK] UefiDriverEntryPoint Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf [X64] [CC] Rm [SLINK] UefiRuntimeLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf [X64] [CC] SynchronizationGcc [CC] BdsMisc [CC] SerMode [SLINK] BaseSynchronizationLib Building ... /Users/exzo/src/edk2/MdePkg/Library/DxeServicesLib/DxeServicesLib.inf [X64] [CC] DebugAgentLibNull [CC] HobLib [CC] CpuExceptionHandlerLibNull [SLINK] DebugAgentLibNull Building ... /Users/exzo/src/edk2/Clover/Library/DuetTimerLib/DuetTimerLib.inf [X64] [SLINK] DxeHobLib [SLINK] CpuExceptionHandlerLibNull [CC] UefiShellDriver1CommandsLib Building ... /Users/exzo/src/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf [X64] [CC] MemoryAllocationLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf [X64] [SLINK] UefiMemoryAllocationLib Building ... /Users/exzo/src/edk2/Clover/Library/VBoxPeCoffLib/VBoxPeCoffLib.inf [X64] [CC] PeCoffGetEntryPoint [CC] X86TimerLib [CC] DxeExtractGuidedSectionLib [SLINK] BasePeCoffGetEntryPointLib [CC] String Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf [X64] [SLINK] DuetTimerLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf [X64] [SLINK] DxeExtractGuidedSectionLib [CC] DxeServicesLib [CC] Mv Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf [X64] [CC] AutoGen [SLINK] UefiShellDriver1CommandsLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiLib/UefiLib.inf [X64] [CC] LzmaDec [CC] HiiLib [CC] FilePaths [CC] PerformanceLib [SLINK] BasePerformanceLibNull Building ... /Users/exzo/src/edk2/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf [X64] [CC] Allocate [CC] BdsConsole [CC] X86Cache [CC] GuidedSectionExtraction [SLINK] DxeServicesLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf [X64] [SLINK] BaseCacheMaintenanceLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf [X64] [SLINK] LzmaDecompressLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf [X64] [CC] BasePeCoff [CC] Attrib [CC] HiiString [CC] PeCoffExtraActionLib [CC] BaseUefiDecompressLib [CC] PeCoffLoaderEx [SLINK] PeCoffExtraActionLibNull [SLINK] BaseUefiDecompressLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf [X64] [CC] HobLib [CC] UefiLibPrint Building ... /Users/exzo/src/edk2/MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf [X64] [SLINK] VBoxPeCoffLib [CC] UefiBootServicesTableLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf [X64] [SLINK] DxeCoreHobLib [SLINK] UefiBootServicesTableLib [CC] HiiLanguage [SLINK] UefiHiiLib [CC] BmBoot [NASM] Thunk16 [CC] UefiRuntimeServicesTableLib [CC] Vol [CC] DevicePathUtilities [SLINK] UefiRuntimeServicesTableLib [CC] DxeCoreEntryPoint [CC] UefiNotTiano [SLINK] DxeCoreEntryPoint [CC] MemoryAllocationLib [CC] Pci [CC] DxeCoreMemoryProfileLibNull [NASM] WriteTr [SLINK] DxeCoreMemoryAllocationLib [CC] AutoGen [CC] BmBootDescription [SLINK] UefiShellLevel2CommandsLib [CC] DevicePathToText [CC] UefiDriverModel [CC] DmpStore [NASM] Lfence [CC] Non-existing [CC] BdsBoot [CC] Console [CC] Dblk [CC] Math64 [CC] BmLoadOption [CC] String [CC] Unaligned [CC] AutoGen [CC] X86WriteIdtr [SLINK] GenericBdsLib [CC] EventLogInfo [CC] X86WriteGdtr [CC] UefiLib [CC] X86Thunk [CC] BmHotkey [CC] X86ReadIdtr [CC] Acpi [SLINK] UefiLib [CC] X86ReadGdtr [CC] X86Msr [CC] DevicePathFromText [CC] BmDriverHealth [SLINK] UefiBootManagerLib [CC] X86GetInterruptState [CC] UefiDevicePathLib [CC] X86FxSave [SLINK] UefiDevicePathLib [CC] X86FxRestore [CC] X86EnablePaging64 [CC] PrintInfo [CC] X86EnablePaging32 [CC] X86DisablePaging64 [CC] X86DisablePaging32 [CC] X86RdRand [CC] X86PatchInstruction [CC] X86SpeculationBarrier [CC] QueryTable [CC] GccInline [CC] SmbiosView [NASM] SwitchStack [CC] LibSmbiosView [NASM] SetJump [CC] UefiShellDebug1CommandsLib [CC] EditTitleBar [NASM] LongJump [CC] EditInputBar [NASM] EnableDisableInterrupts [CC] EditStatusBar [NASM] DisablePaging64 [CC] EditMenuBar [CC] Edit [NASM] CpuId [NASM] CpuIdEx [NASM] EnableCache [CC] FileBuffer [NASM] DisableCache [CC] MainTextEditor [NASM] RdRand [CC] ChkStkGcc [CC] Misc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (LongJump.obj) in output file used for input files: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/LongJump.obj and: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/LongJump.obj (due to use of basename, truncation, blank padding or duplicate input files) /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (SetJump.obj) in output file used for input files: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/SetJump.obj and: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/SetJump.obj (due to use of basename, truncation, blank padding or duplicate input files) /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (SwitchStack.obj) in output file used for input files: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/SwitchStack.obj and: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/SwitchStack.obj (due to use of basename, truncation, blank padding or duplicate input files) [SLINK] BaseLib Building ... /Users/exzo/src/edk2/Clover/OsxLowMemFixDrv/OsxLowMemFixDrv.inf [X64] Building ... /Users/exzo/src/edk2/Clover/OsxAptioFixDrv/OsxAptioFix3Drv.inf [X64] Building ... /Users/exzo/src/edk2/Clover/OsxAptioFixDrv/OsxAptioFixDrv.inf [X64] Building ... /Users/exzo/src/edk2/Clover/rEFIt_UEFI/refit.inf [X64] Building ... /Users/exzo/src/edk2/Clover/bdmesg_efi/bdmesg.inf [X64] Building ... /Users/exzo/src/edk2/Clover/Drivers/AudioDxe/AudioDxe.inf [X64] Building ... /Users/exzo/src/edk2/Clover/Protocols/EmuVariableUefi/EmuVariableRuntimeDxe.inf [X64] Building ... /Users/exzo/src/edk2/Clover/Protocols/OsxFatBinaryDrv/OsxFatBinaryDrv.inf [X64] Building ... /Users/exzo/src/edk2/Clover/Protocols/DumpUefiCalls/DumpUefiCalls.inf [X64] Building ... /Users/exzo/src/edk2/Clover/Protocols/AppleKeyFeeder/AppleKeyFeeder.inf [X64] [CC] OsxLowMemFixDrv Building ... /Users/exzo/src/edk2/Clover/Protocols/AppleKeyAggregator/AppleKeyAggregator.inf [X64] Building ... /Users/exzo/src/edk2/Clover/Protocols/HashServiceFix/HashServiceFix.inf [X64] [CC] OsxAptioFix3Drv [CC] bdmesg [CC] OsxAptioFixDrv [CC] HdaCodecComponentName [CC] OsxFatBinaryDrv [CC] InitVariable [CC] DumpUefiCalls [CC] AutoGen [CC] AppleKeyFeeder [SLINK] bdmesg [CC] HashServiceFix [CC] BufferImage [CC] Lib [CC] AutoGen [DLINK1] bdmesg [MTOC] bdmesg [SLINK] OsxFatBinaryDrv [CC] AppleKeyAggregator [CC] HdaCodecInfo [DLINK1] OsxFatBinaryDrv [MTOC] OsxFatBinaryDrv [GENFW] bdmesg Building ... /Users/exzo/src/edk2/Clover/Protocols/AppleUITheme/AppleUITheme.inf [X64] [CC] BootFixes [CC] AppleKeyMapUtils [CC] AutoGen [SLINK] OsxLowMemFixDrv [GENFW] OsxFatBinaryDrv Building ... /Users/exzo/src/edk2/Clover/Protocols/AppleImageCodec/AppleImageCodec.inf [X64] [CC] Clipboard [CC] AutoGen [CC] BootFixes3 [DLINK1] OsxLowMemFixDrv [SLINK] AppleKeyAggregator [MTOC] OsxLowMemFixDrv [DLINK1] AppleKeyAggregator [MTOC] AppleKeyAggregator [CC] HdaCodecAudioIo [CC] AppleUITheme [CC] BdsConnect [GENFW] OsxLowMemFixDrv [CC] SimpleTextProxy Building ... /Users/exzo/src/edk2/Clover/Protocols/FirmwareVolume/FirmwareVolume.inf [X64] [CC] DecodedKernelCheck [GENFW] AppleKeyAggregator Building ... /Users/exzo/src/edk2/Clover/Protocols/SMCHelper/SMCHelper.inf [X64] [CC] Lib [CC] AppleImageCodec [CC] DiskImage [CC] AutoGen [CC] DecodedKernelCheck [SLINK] AppleUITheme [CC] EmuVariable [CC] SimpleTextExProxy [CC] BootArgs [DLINK1] AppleUITheme [MTOC] AppleUITheme [CC] FirmwareVolume [CC] BootArgs [GENFW] AppleUITheme Building ... /Users/exzo/src/edk2/Clover/Protocols/MsgLog/MsgLog.inf [X64] [CC] AutoGen [CC] SMCHelper [CC] AutoGen [CC] FileImage [SLINK] AppleKeyFeeder [SLINK] EmuVariableUefi [CC] AutoGen [CC] VMem [DLINK1] AppleKeyFeeder [SLINK] FirmwareVolume [DLINK1] EmuVariableUefi [MTOC] AppleKeyFeeder [CC] BootServices [MTOC] EmuVariableUefi [DLINK1] FirmwareVolume [CC] AutoGen [CC] MsgLog [MTOC] FirmwareVolume [SLINK] SMCHelper [GENFW] AppleKeyFeeder Building ... /Users/exzo/src/edk2/Clover/FSInject/FSInject.inf [X64] [CC] HdaCodec [GENFW] EmuVariableUefi [CC] VMem Building ... /Users/exzo/src/edk2/Clover/LegacyBios/Region2Dxe/LegacyRegion2Dxe.inf [X64] [DLINK1] SMCHelper [GENFW] FirmwareVolume Building ... /Users/exzo/src/edk2/Clover/CloverEFI/BiosKeyboard/KeyboardDxe.inf [X64] [CC] sha1 [MTOC] SMCHelper [CC] HexEdit [CC] AutoGen [SLINK] MsgLog [GENFW] SMCHelper Building ... /Users/exzo/src/edk2/Clover/Drivers/PartitionDxe/PartitionDxe.inf [X64] [CC] HdaControllerComponentName [DLINK1] MsgLog [CC] RuntimeServices [CC] AutoGen [MTOC] MsgLog [CC] Lib [SLINK] HashServiceFix [DLINK1] HashServiceFix [GENFW] MsgLog Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf [X64] [MTOC] HashServiceFix [CC] LegacyRegion2 [CC] AppleKey [CC] Lib [CC] ComponentName [CC] Log [GENFW] HashServiceFix Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf [X64] [CC] AutoGen [SLINK] LegacyRegion2Dxe [CC] device_tree [CC] ComponentName [DLINK1] LegacyRegion2Dxe [CC] UnicodeCollationEng [CC] MemLog [MTOC] LegacyRegion2Dxe [CC] FSInject [CC] HdaControllerMem [CC] ComponentName [CC] Mbr [CC] device_tree [GENFW] LegacyRegion2Dxe Building ... /Users/exzo/src/edk2/Clover/CloverEFI/OsxAcpiTableDxe/AcpiTableDxe.inf [X64] [CC] NVRAMDebug [CC] AutoGen [SLINK] EnglishDxe [CC] HdaControllerInfo [CC] Test [CC] NVRAMDebug [DLINK1] EnglishDxe [MTOC] EnglishDxe [CC] FileLib [CC] Mach-O [CC] Gpt [GENFW] EnglishDxe Building ... /Users/exzo/src/edk2/Clover/Drivers/Ps2MouseDxe/Ps2MouseDxe.inf [X64] [CC] MainHexEditor [CC] AutoGen [CC] Mach-O [SLINK] FSInject [CC] picopng [CC] DiskIo [CC] DataHub [DLINK1] FSInject [CC] HdaControllerHdaIo [MTOC] FSInject [GENFW] FSInject Building ... /Users/exzo/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/Ps2MouseAbsolutePointerDxe.inf [X64] [CC] MemImage [CC] AutoGen [CC] ComponentName [CC] ElTorito [SLINK] DiskIoDxe [CC] BiosKeyboard [DLINK1] DiskIoDxe [CC] load_bmp [MTOC] DiskIoDxe [CC] Fs [CC] main [NASM] AsmFuncsX64 [GENFW] DiskIoDxe Building ... /Users/exzo/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf [X64] [CC] ComponentName [CC] Apple [CC] Misc [CC] AcpiTableProtocol [NASM] AsmFuncsX64 [CC] AutoGen [CC] LegacyBiosThunk [CC] CommPs2 [SLINK] OsxAptioFixDrv [CC] load_icns [CC] AcpiTable [CC] HdaController [CC] ComponentName [DLINK1] OsxAptioFixDrv [MTOC] OsxAptioFixDrv [CC] AutoGen [SLINK] KeyboardDxe [CC] AppleProtocols [CC] AutoGen [CC] CommPs2 [GENFW] OsxAptioFixDrv Building ... /Users/exzo/src/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf [X64] [SLINK] AppleImageCodec [CC] AutoGen [DLINK1] KeyboardDxe [SLINK] AcpiTableDxe [CC] HdaModels [MTOC] KeyboardDxe [DLINK1] AppleImageCodec [CC] Partition [MTOC] AppleImageCodec [CC] Ps2Mouse [NASM] RTShims [DLINK1] AcpiTableDxe [CC] icns [MTOC] AcpiTableDxe [GENFW] KeyboardDxe Building ... /Users/exzo/src/edk2/PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf [X64] [CC] AutoGen [GENFW] AppleImageCodec Building ... /Users/exzo/src/edk2/MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouseDxe.inf [X64] [SLINK] DumpUefiCalls [GENFW] AcpiTableDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf [X64] [CC] AutoGen [DLINK1] DumpUefiCalls [CC] AudioDxe [CC] AutoGen [CC] AutoGen [CC] ComponentName [SLINK] PartitionDxe [MTOC] DumpUefiCalls [SLINK] Ps2MouseDxe [SLINK] OsxAptioFix3Drv [CC] Ps2MouseAbsolutePointer [DLINK1] PartitionDxe [MTOC] PartitionDxe [DLINK1] Ps2MouseDxe [GENFW] DumpUefiCalls [DLINK1] OsxAptioFix3Drv Building ... /Users/exzo/src/edk2/Clover/Drivers/UsbKbDxe/UsbKbDxe.inf [X64] [MTOC] Ps2MouseDxe [MTOC] OsxAptioFix3Drv [CC] AutoGen /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (Misc.obj) in output file used for input files: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/Clover/ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib/OUTPUT/HexEdit/Misc.obj and: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/Clover/ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib/OUTPUT/Edit/Misc.obj (due to use of basename, truncation, blank padding or duplicate input files) [CC] AutoGen [CC] ComponentName [SLINK] UefiShellDebug1CommandsLib [CC] Ps2KbdCtrller Building ... /Users/exzo/src/edk2/Clover/Drivers/UsbBusDxe/UsbBusDxe.inf [X64] [GENFW] PartitionDxe [CC] PcatIsaAcpi Building ... /Users/exzo/src/edk2/Clover/Drivers/XhciDxe/XhciDxe.inf [X64] [CC] AutoGen [SLINK] AudioDxe [GENFW] Ps2MouseDxe [GENFW] OsxAptioFix3Drv Building ... /Users/exzo/src/edk2/MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf [X64] [SLINK] Ps2MouseAbsolutePointerDxe Building ... /Users/exzo/src/edk2/Clover/Drivers/OhciDxe/OhciDxe.inf [X64] [DLINK1] AudioDxe [MTOC] AudioDxe [CC] UsbMassBot [DLINK1] Ps2MouseAbsolutePointerDxe [MTOC] Ps2MouseAbsolutePointerDxe [GENFW] AudioDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf [X64] [CC] MouseHid [CC] AppleKey [GENFW] Ps2MouseAbsolutePointerDxe Building ... /Users/exzo/src/edk2/Clover/Drivers/DVDDisk/ScsiDiskDxe.inf [X64] [CC] IsaAcpi [CC] IsaIo [CC] ComponentName [CC] Ps2KbdTextIn [CC] EhciUrb [CC] ComponentName [CC] ComponentName [CC] UsbDesc [CC] UsbMouse [CC] IsaBus [CC] AutoGen [CC] UsbMassImpl [CC] Ps2Keyboard [SLINK] IsaAcpi [CC] UhciSched [CC] EfiKey [DLINK1] IsaAcpi [CC] AutoGen [MTOC] IsaAcpi [CC] AutoGen [CC] UsbHcMem [SLINK] UsbMouseDxe [SLINK] IsaBusDxe [CC] AutoGen [CC] Xhci [DLINK1] UsbMouseDxe [GENFW] IsaAcpi Building ... /Users/exzo/src/edk2/Clover/Drivers/DVDBus/ScsiBusDxe.inf [X64] [DLINK1] IsaBusDxe [MTOC] UsbMouseDxe [SLINK] Ps2KeyboardDxe [MTOC] IsaBusDxe [CC] UhciDebug [CC] UsbEnumer [DLINK1] Ps2KeyboardDxe [GENFW] UsbMouseDxe Building ... /Users/exzo/src/edk2/Clover/Drivers/AtaBus/AtaBusDxe.inf [X64] [MTOC] Ps2KeyboardDxe [GENFW] IsaBusDxe [CC] UsbMassBoot Building ... /Users/exzo/src/edk2/Clover/Drivers/AtaAtapi/AtaAtapiPassThru.inf [X64] [CC] Ohci [GENFW] Ps2KeyboardDxe Building ... /Users/exzo/src/edk2/Clover/Drivers/SataControllerDxe/SataControllerDxe.inf [X64] [CC] ComponentName [CC] lib [CC] XhciReg [CC] UhciQueue [CC] UsbMassCbi [CC] EhciSched [CC] ComponentName [CC] OhciSched [CC] UsbBus [CC] KeyBoard [CC] UsbMassDiskInfo [CC] UhciReg [CC] EhciDebug [CC] AtaBus [CC] ScsiBus [CC] AutoGen [CC] ScsiDisk [CC] ComponentName [SLINK] UsbMassStorageDxe [CC] SataController [DLINK1] UsbMassStorageDxe [CC] AutoGen [MTOC] UsbMassStorageDxe [SLINK] ScsiBus [CC] AtaAtapiPassThru [CC] UsbHub [CC] AutoGen [CC] AutoGen [CC] UsbHcMem [DLINK1] ScsiBus [SLINK] ScsiDisk [CC] EhciReg [CC] OhciReg [GENFW] UsbMassStorageDxe Building ... /Users/exzo/src/edk2/Clover/LegacyBios/VideoDxe/VideoDxe.inf [X64] [SLINK] UsbKbDxe [MTOC] ScsiBus [CC] AutoGen [SLINK] SataController [DLINK1] ScsiDisk [DLINK1] UsbKbDxe [MTOC] ScsiDisk [MTOC] UsbKbDxe [CC] AtaPassThruExecute [GENFW] ScsiBus Building ... /Users/exzo/src/edk2/Clover/CloverEFI/BiosVideo/BiosVideo.inf [X64] [DLINK1] SataController [CC] ComponentName [MTOC] SataController [GENFW] ScsiDisk Building ... /Users/exzo/src/edk2/Clover/FileSystems/GrubFS/src/UDF.inf [X64] [GENFW] UsbKbDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/GrubFS/src/NTFS.inf [X64] [CC] ComponentName [GENFW] SataController Building ... /Users/exzo/src/edk2/Clover/FileSystems/GrubFS/src/ISO9660.inf [X64] [CC] ComponentName [CC] OhciUrb [CC] AutoGen [CC] Uhci [CC] driver [SLINK] AtaBusDxe [CC] driver [CC] UsbUtility [CC] driver [DLINK1] AtaBusDxe [MTOC] AtaBusDxe [CC] OhciDebug [CC] Ehci [GENFW] AtaBusDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/GrubFS/src/HFSPLUS.inf [X64] [CC] AutoGen [CC] ComponentName [CC] AhciMode [SLINK] UsbBusDxe [DLINK1] UsbBusDxe [MTOC] UsbBusDxe [CC] AutoGen [CC] ComponentName [CC] AutoGen [CC] file [SLINK] EhciDxe [CC] file [SLINK] UhciDxe [GENFW] UsbBusDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/GrubFS/src/EXFAT.inf [X64] [CC] file [DLINK1] EhciDxe [MTOC] EhciDxe [DLINK1] UhciDxe [MTOC] UhciDxe [CC] XhciSched [CC] driver [GENFW] EhciDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/FatPkg/EnhancedFatDxe/Fat.inf [X64] [GENFW] UhciDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/VBoxFsDxe/VBoxReiserFS.inf [X64] [CC] grub_driver [CC] grub_driver [CC] grub_driver [CC] UsbHcMem [CC] driver [CC] DirectoryCache [CC] UsbHcMem [CC] AutoGen [CC] BiosVideoNew [SLINK] OhciDxe [CC] file [CC] BiosVideo [CC] grub_file [CC] grub_file [CC] grub_file [DLINK1] OhciDxe [MTOC] OhciDxe [CC] ComponentName [CC] ComponentName [GENFW] OhciDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/VBoxFsDxe/VBoxExt4.inf [X64] [CC] DiskCache [CC] grub_driver [CC] ComponentName [CC] file [CC] fsw_reiserfs [CC] grub [CC] grub [CC] AutoGen [CC] grub [CC] IdeMode [SLINK] XhciDxe [CC] AutoGen [SLINK] CsmVideoDxe [DLINK1] XhciDxe [CC] LegacyBiosThunk [MTOC] XhciDxe [CC] grub_driver [CC] logging [DLINK1] CsmVideoDxe [MTOC] CsmVideoDxe [CC] logging [CC] FileName [CC] logging [GENFW] XhciDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/VBoxFsDxe/VBoxExt2.inf [X64] [CC] ComponentName [GENFW] CsmVideoDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/VBoxFsDxe/VBoxIso9660.inf [X64] [CC] grub_file [CC] AutoGen [SLINK] BiosVideo [CC] missing [CC] missing [DLINK1] BiosVideo [CC] fsw_ext4 [CC] AutoGen [MTOC] BiosVideo [CC] Hash [CC] missing [SLINK] AtaAtapiPassThruDxe [GENFW] BiosVideo Building ... /Users/exzo/src/edk2/Clover/FileSystems/VBoxFsDxe/VBoxHfs.inf [X64] [DLINK1] AtaAtapiPassThruDxe [MTOC] AtaAtapiPassThruDxe [CC] fsw_core [CC] grub_file [CC] path [CC] grub [CC] path [GENFW] AtaAtapiPassThruDxe Building ... /Users/exzo/src/edk2/Clover/Protocols/DriverOverride/DriverOverride.inf [X64] [CC] path [CC] fsw_ext2 [CC] fsw_efi_lib [CC] logging [CC] grub [CC] fsw_iso9660 [CC] DriverOverride [CC] utf8 [CC] utf8 [CC] utf8 [CC] DirectoryManage [CC] fsw_core [CC] missing [CC] AutoGen [CC] logging [SLINK] DriverOverride [DLINK1] DriverOverride [MTOC] DriverOverride [CC] device [CC] device [CC] ComponentName [CC] fsw_core [CC] path [CC] device [CC] fsw_efi [GENFW] DriverOverride Building ... /Users/exzo/src/edk2/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf [X64] [CC] missing [CC] fsw_efi_lib [CC] fsw_hfs [CC] err [CC] err [CC] fsw_efi_lib [CC] err [CC] path [CC] fsw_core [CC] ReadWrite [CC] utf8 [CC] DataHub [CC] OpenVolume [CC] fsw_efi_lib [CC] fsw_efi [CC] utf8 [CC] AutoGen [SLINK] DataHubDxe [CC] menu [CC] fsw_core [DLINK1] DataHubDxe [MTOC] DataHubDxe [CC] fsw_efi [CC] fsw_lib [CC] Open [GENFW] DataHubDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf [X64] [CC] device [CC] AutoGen [CC] misc [CC] misc [CC] fsw_efi_lib [SLINK] VBoxReiserFS [CC] misc [DLINK1] VBoxReiserFS [MTOC] VBoxReiserFS [CC] fsw_efi [CC] err [CC] Misc [CC] list [GENFW] VBoxReiserFS [CC] list Building ... /Users/exzo/src/edk2/Clover/CloverEFI/OsxPciBusNoEnumerationDxe/PciBusNoEnumeration.inf [X64] [CC] list [CC] fsw_lib [CC] Init [CC] fsw_lib [CC] fsw_efi [CC] AutoGen [CC] fshelp [CC] PciPowerManagement [CC] NvmExpressBlockIo [CC] fshelp [SLINK] VBoxExt4 [DLINK1] VBoxExt4 [CC] fshelp [MTOC] VBoxExt4 [CC] AutoGen [SLINK] VBoxExt2 [GENFW] VBoxExt4 Building ... /Users/exzo/src/edk2/Clover/CloverEFI/PciRootBridgeDxe/PciRootBridge.inf [X64] [CC] Info [DLINK1] VBoxExt2 [CC] ComponentName [MTOC] VBoxExt2 [CC] fsw_lib [CC] screen [CC] misc [GENFW] VBoxExt2 Building ... /Users/exzo/src/edk2/PcAtChipsetPkg/8254TimerDxe/8254Timer.inf [X64] [CC] PciRomTable [CC] AutoGen [CC] gzio [CC] ntfscomp [SLINK] VBoxIso9600 [DLINK1] VBoxIso9600 [CC] list [MTOC] VBoxIso9600 [CC] FileSpace [CC] PciDriverOverride [CC] fsw_lib [CC] Timer [GENFW] VBoxIso9600 Building ... /Users/exzo/src/edk2/Clover/CloverEFI/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf [X64] [CC] device [CC] NvmExpress [CC] PcatPciRootBridge [CC] AutoGen [CC] AutoGen [CC] udf [SLINK] VBoxHfs [CC] Flush [SLINK] Timer [DLINK1] VBoxHfs [CC] fshelp [DLINK1] Timer [MTOC] VBoxHfs [CC] PciOptionRomSupport [MTOC] Timer [CC] PcRtcEntry [CC] err [CC] PcatPciRootBridgeDevicePath [CC] NvmExpressDiskInfo [CC] AutoGen [GENFW] VBoxHfs Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/Metronome/Metronome.inf [X64] [CC] iso9660 [GENFW] Timer [SLINK] GrubUDF Building ... /Users/exzo/src/edk2/Clover/CloverEFI/AcpiReset/Reset.inf [X64] [CC] Fat [DLINK1] GrubUDF [MTOC] GrubUDF [CC] PciEnumerator [CC] AutoGen [SLINK] GrubISO9660 [GENFW] GrubUDF [CC] Metronome Building ... /Users/exzo/src/edk2/PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf [X64] [DLINK1] GrubISO9660 [CC] Reset [MTOC] GrubISO9660 [CC] Delete [CC] PcatPciRootBridgeIo [CC] NvmExpressHci [CC] PcRtc [CC] IO [GENFW] GrubISO9660 Building ... /Users/exzo/src/edk2/Clover/CloverEFI/CpuDxe/Cpu.inf [X64] [CC] AutoGen [SLINK] Metronome [CC] ntfs [CC] AutoGen [CC] Data [DLINK1] Metronome [SLINK] AcpiReset [MTOC] Metronome [CC] 8259 [CC] AutoGen [CC] exfat [DLINK1] AcpiReset [SLINK] PcRtc [CC] PciEnumeratorSupport [MTOC] AcpiReset [GENFW] Metronome Building ... /Users/exzo/src/edk2/Clover/CloverEFI/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf [X64] [CC] AutoGen [DLINK1] PcRtc [MTOC] PcRtc [CC] misc [SLINK] GrubNTFS [CC] DeviceIo [GENFW] AcpiReset Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/EbcDxe/EbcDxe.inf [X64] [CC] AutoGen [CC] UnicodeCollation [DLINK1] GrubNTFS [SLINK] Legacy8259 [GENFW] PcRtc [MTOC] GrubNTFS Building ... /Users/exzo/src/edk2/Clover/CloverEFI/OsxBdsDxe/BdsDxe.inf [X64] [CC] AutoGen [DLINK1] Legacy8259 [SLINK] GrubEXFAT [MTOC] Legacy8259 [GENFW] GrubNTFS Building ... /Users/exzo/src/edk2/Clover/CloverEFI/OsxEfiLdr/EfiLdr.inf [X64] [CC] PciCommand [DLINK1] GrubEXFAT [CC] list [CC] AutoGen [MTOC] GrubEXFAT [CC] NvmExpressPassthru [CC] CpuIo2Dxe [GENFW] Legacy8259 [CC] EbcDebuggerHook Building ... /Users/exzo/src/edk2/Clover/CloverEFI/OsxSmbiosGenDxe/SmbiosGen.inf [X64] [SLINK] Fat [CC] PcatIo [GENFW] GrubEXFAT Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf [X64] [DLINK1] Fat [MTOC] Fat [NASM] CpuInterrupt [CC] AutoGen [CC] AutoGen [GENFW] Fat Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf [X64] [CC] ComponentName [CC] EfiLoader [CC] AutoGen [SLINK] NvmExpressDxe [SLINK] CpuIo2Dxe [CC] HwErrRecSupport [SLINK] PcatPciRootBridge [DLINK1] CpuIo2Dxe [DLINK1] NvmExpressDxe [MTOC] NvmExpressDxe [MTOC] CpuIo2Dxe [DLINK1] PcatPciRootBridge [CC] common [MTOC] PcatPciRootBridge [VFR] BdsDxe [CC] fshelp [GENFW] NvmExpressDxe [GENFW] CpuIo2Dxe Building ... /Users/exzo/src/edk2/Clover/CloverEFI/GraphicsConsoleDxe/GraphicsConsoleDxe.inf [X64] [CC] Debug [CC] DevicePath Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf [X64] [GENFW] PcatPciRootBridge [CC] SmbiosGen Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf [X64] [CC] Cpu [CC] DeviceManagerVfr [CC] AutoGen [CC] AutoGen [VFR] BdsDxe [CC] ComponentName [SLINK] DevicePathDxe [CC] PciDeviceSupport [SLINK] SmbiosGenDxe [CC] AutoGen [CC] hfspluscomp [SLINK] Cpu [DLINK1] SmbiosGenDxe [DLINK1] DevicePathDxe [CC] PeLoader [MTOC] SmbiosGenDxe [MTOC] DevicePathDxe [DLINK1] Cpu [CC] SmbiosDxe [CC] DriverHealthVfr [MTOC] Cpu [GENFW] SmbiosGenDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf [X64] [GENFW] DevicePathDxe [CC] LaffStd Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf [X64] [GENFW] Cpu Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf [X64] [CC] PciBus [CC] Support [CC] AutoGen [CC] legacy [SLINK] SmbiosDxe [CC] EbcExecute [DLINK1] SmbiosDxe [MTOC] SmbiosDxe [CC] AutoGen [CC] HiiDatabaseEntry [CC] ComponentName [SLINK] EfiLoader [GENFW] SmbiosDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf [X64] [DLINK1] EfiLoader [CC] ConSplitterGraphics [MTOC] EfiLoader [GENFW] EfiLoader Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf [X64] [CC] PciIo [CC] GraphicsConsole [CC] EbcInt [CC] hfsplus [CC] ComponentName [CC] SecurityStub [CC] ConPlatform [CC] AutoGen [SLINK] PciBusNoEnumerationDxe [CC] AutoGen [CC] AutoGen [CC] NullMemoryTest [SLINK] GraphicsConsoleDxe [DLINK1] PciBusNoEnumerationDxe [SLINK] GrubHFSPLUS [MTOC] PciBusNoEnumerationDxe [CC] EbcSupport [DLINK1] GraphicsConsoleDxe [CC] AutoGen [CC] DeviceManager [MTOC] GraphicsConsoleDxe [DLINK1] GrubHFSPLUS [SLINK] ConPlatformDxe [MTOC] GrubHFSPLUS [CC] Defer3rdPartyImageLoad [GENFW] PciBusNoEnumerationDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf [X64] [CC] Image [DLINK1] ConPlatformDxe [CC] AutoGen [GENFW] GraphicsConsoleDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf [X64] [MTOC] ConPlatformDxe [VFR] BdsDxe [SLINK] NullMemoryTestDxe [GENFW] GrubHFSPLUS Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf [X64] [DLINK1] NullMemoryTestDxe [GENFW] ConPlatformDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf [X64] [MTOC] NullMemoryTestDxe [CC] AutoGen [SLINK] SecurityStubDxe [CC] BootManagerVfr [GENFW] NullMemoryTestDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf [X64] [CC] ImageEx [CC] CapsuleService [DLINK1] SecurityStubDxe [MTOC] SecurityStubDxe [CC] MonotonicCounter [CC] Reclaim [NASM] EbcLowLevel [CC] Crc32 [GENFW] SecurityStubDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/PCD/Dxe/Pcd.inf [X64] [CC] WatchdogTimer [CC] AutoGen [CC] SaveLongModeContext [SLINK] MonotonicCounterRuntimeDxe [CC] BootManager [CC] AutoGen [SLINK] EbcDxe [DLINK1] MonotonicCounterRuntimeDxe [MTOC] MonotonicCounterRuntimeDxe [CC] Runtime [DLINK1] EbcDxe [CC] AutoGen [VFR] BdsDxe [MTOC] EbcDxe [CC] CapsuleReset [SLINK] WatchdogTimer [GENFW] MonotonicCounterRuntimeDxe Building ... /Users/exzo/src/edk2/Clover/CloverEFI/OsxDxeCore/DxeMain.inf [X64] [CC] FormDisplay [DLINK1] WatchdogTimer [GENFW] EbcDxe Building ... /Users/exzo/src/edk2/Clover/CloverEFI/OsxDxeIpl/DxeIpl.inf [X64] [MTOC] WatchdogTimer [CC] Pcd [CC] FE [CC] AutoGen [SLINK] RuntimeDxe [CC] AutoGen [GENFW] WatchdogTimer Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Application/Shell/Shell.inf [X64] [SLINK] CapsuleRuntimeDxe [DLINK1] RuntimeDxe [MTOC] RuntimeDxe [DLINK1] CapsuleRuntimeDxe [MTOC] CapsuleRuntimeDxe [CC] Setup [CC] DxeInit [GENFW] RuntimeDxe [CC] loader [GENFW] CapsuleRuntimeDxe [CC] FileExplorer [CC] ConSplitter [CC] CoreSectionExtraction [CC] ProcessOptions [CC] AutoGen [CC] LegacyTable [CC] Service [SLINK] ConSplitterDxe [DLINK1] ConSplitterDxe [CC] tool [MTOC] ConSplitterDxe [CC] AutoGen [GENFW] ConSplitterDxe [SLINK] PcdDxe [CC] Variable [CC] secureboot [CC] HobGeneration [CC] BootMaint [DLINK1] PcdDxe [MTOC] PcdDxe [CC] securehash [CC] Image [GENFW] PcdDxe [CC] Debug [CC] IfrParse [CC] securemenu [CC] InputHandler [CC] VariableDxe [CC] Shell [CC] ConfigRouting [CC] BBSsupport [CC] securevars [CC] DebugImageInfo [CC] EnterDxeCore [CC] Measurement [CC] Popup [CC] Paging [CC] Stall [CC] TcgMorLockDxe [CC] UpdatePage [CC] bootscreen [CC] AutoGen [CC] AutoGen [SLINK] DisplayEngine [SLINK] DxeIpl [CC] String [CC] ShellParametersProtocol [CC] SetWatchdogTimer [DLINK1] DisplayEngine [CC] VarCheck [DLINK1] DxeIpl [MTOC] DisplayEngine [MTOC] DxeIpl [GENFW] DisplayEngine [GENFW] DxeIpl [CC] VariableExLib [CC] InstallConfigurationTable [CC] Expression [CC] Variable [CC] lockedgraphics [CC] SpeculationBarrierDxe [CC] Library [CC] Data [CC] AutoGen [SLINK] VariableRuntimeDxe [DLINK1] VariableRuntimeDxe [MTOC] VariableRuntimeDxe [GENFW] VariableRuntimeDxe [CC] egemb_icons [CC] ShellProtocol [CC] DriverSupport [CC] Database [CC] Presentation [CC] BootOption [CC] AutoGen [CC] egemb_icons_dark [CC] Notify [SLINK] SetupBrowser [DLINK1] SetupBrowser [MTOC] SetupBrowser [GENFW] SetupBrowser [CC] FileHandleWrappers [CC] BmLib [CC] egemb_font [CC] Locate [VFR] BdsDxe [CC] Bm [CC] ShellEnvVar [CC] Font [CC] scroll_images [CC] Handle [CC] Hotkey [CC] ShellManParser [CC] BmLib [CC] MemoryTest [CC] ConfigKeywordHandler [CC] ConsoleLogger [CC] Gcd [CC] Capsules [CC] AutoGen [SLINK] HiiDatabase [DLINK1] HiiDatabase [CC] ConsoleWrappers [MTOC] HiiDatabase [GENFW] HiiDatabase [CC] String [CC] Pool [CC] image [CC] AutoGen [SLINK] Shell [DLINK1] Shell [CC] Language [MTOC] Shell [GENFW] Shell [VFR] BdsDxe [CC] load_icns [CC] FrontPageVfr [CC] Page [CC] MemData [CC] libscreen [CC] FrontPage [CC] FwVolBlock [CC] FwVolWrite [CC] BdsEntry [CC] AutoGen [CC] FwVolRead [SLINK] BdsDxe [DLINK1] BdsDxe [MTOC] BdsDxe [GENFW] BdsDxe [CC] FwVolAttrib [CC] Ffs [CC] FwVol [CC] Tpl [CC] Timer [CC] Event [CC] Dependency [CC] Dispatcher [CC] lodepng [CC] DxeProtocolNotify [CC] DxeMain [CC] text [CC] AutoGen [SLINK] DxeCore [DLINK1] DxeCore [MTOC] DxeCore [CC] FloatLib [GENFW] DxeCore [CC] nanosvg [CC] nanosvgrast [CC] VectorGraphics [CC] AcpiPatcher [CC] AmlGenerator [CC] ati [CC] BootLog [CC] BootOptions [CC] Console [CC] cpu [CC] DataHubCpu [CC] device_inject [CC] device_tree [CC] Edid [CC] Events [CC] hda [CC] HdaCodecDump [CC] gma [CC] guid [CC] Injectors [CC] LegacyBiosThunk [CC] LegacyBoot [CC] nvidia [CC] platformdata [CC] plist [CC] Pointer [CC] Settings [CC] smbios [CC] spd [CC] string [CC] StateGenerator [CC] usbfix [CC] b64cdecode [CC] FixBiosDsdt [CC] kernel_patcher [CC] kext_patcher [CC] kext_inject [CC] Nvram [CC] card_vlist [CC] PlatformDriverOverride [CC] Hibernate [CC] Net [CC] sound [CC] StartupSound [CC] AutoGen [SLINK] CLOVER [DLINK1] CLOVER [MTOC] CLOVER [GENFW] CLOVER Generating DUETEFIMAINFVX64 FV ######################################## ######################################## ############################ GUID cross reference file can be found at /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/FV/Guid.xref FV Space Information DUETEFIMAINFVX64 [40%Full] 2752512 total, 1117088 used, 1635424 free - Done - Build end time: 16:00:48, May.21 2019 Build total time: 00:00:44 Compressing DUETEFIMainFv.FV ... Encoding Compressing DxeCore.efi ... Encoding Compressing DxeIpl.efi ... Encoding Generate Loader Image ... Created /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/FV/Efildr64 879+0 records in 879+0 records out 450048 bytes transferred in 0.003870 secs (116291161 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.000015 secs (66576 bytes/sec) -> BOOTX64.efi -> CLOVERX64.efi Copy Mandatory drivers: -> FSInject-64.efi -> XhciDxe-64.efi -> SMCHelper-64.efi -> AudioDxe-64.efi -> AppleImageCodec-64.efi -> AppleKeyAggregator-64.efi -> AppleUITheme-64.efi -> FirmwareVolume-64.efi -> FSInject-64.efi -> DataHubDxe-64.efi -> SMCHelper-64.efi -> AudioDxe-64.efi -> AppleImageCodec-64.efi -> AppleUITheme-64.efi -> AppleKeyAggregator-64.efi -> FirmwareVolume-64.efi -> VBoxHfs-64.efi -> GrubEXFAT-64.efi -> GrubISO9660-64.efi -> GrubNTFS-64.efi -> GrubUDF-64.efi -> AptioMemoryFix-64.efi -> AptioInputFix-64.efi -> AppleUISupport-64.efi -> ApfsDriverLoader-64.efi -> ApfsDriverLoader-64.efi -> AppleImageLoader-64.efi -> AppleImageLoader-64.efi -> CsmVideoDxe-64.efi -> EnglishDxe-64.efi -> EmuVariableUefi-64.efi -> Fat-64.efi -> NvmExpressDxe-64.efi -> OsxAptioFix3Drv-64.efi -> OsxAptioFixDrv-64.efi -> OsxFatBinaryDrv-64.efi -> OsxLowMemFixDrv-64.efi -> PartitionDxe-64.efi -> Ps2MouseDxe-64.efi -> UsbKbDxe-64.efi -> UsbMouseDxe-64.efi -> VBoxExt2-64.efi -> VBoxExt4-64.efi -> VBoxIso9600-64.efi -> AppleKeyFeeder-64.efi -> HashServiceFix-64.efi Copy Applications: -> bdmesg.efi -> Shell64U.efi Done! Generating BootSectors make: Nothing to be done for `all'. Done! ================================================================================ boot7 <-------------------------------------------------- TOOLCHAIN_DIR: /Users/exzo/src/opt/local MTOC_PREFIX: /Users/exzo/src/opt/local/bin/ NASM_PREFIX: /Users/exzo/src/opt/local/bin/ NASM_VER: 2.14.02 Building from: /Users/exzo/src/edk2 Running edk2 build for CloverX64 using the command: build -D DISABLE_USB_SUPPORT -D NO_GRUB_DRIVERS_EMBEDDED --conf=/Users/exzo/src/edk2/Conf -D USE_BIOS_BLOCKIO -D USE_LOW_EBDA -p Clover/Clover.dsc -a X64 -b RELEASE -t XCODE8 -n 13 Build environment: Darwin-17.7.0-x86_64-i386-64bit Build start time: 16:00:49, May.21 2019 WORKSPACE = /Users/exzo/src/edk2 EDK_TOOLS_PATH = /Users/exzo/src/edk2/BaseTools CONF_PATH = /Users/exzo/src/edk2/Conf Architecture(s) = X64 Build target = RELEASE Toolchain = XCODE8 Active Platform = /Users/exzo/src/edk2/Clover/Clover.dsc Flash Image Definition = /Users/exzo/src/edk2/Clover/Clover.fdf Processing meta-data .......... done! Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePrintLib/BasePrintLib.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseLib/BaseLib.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf [X64] Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf [X64] [CC] IoLibMmioBuffer [CC] BaseReportStatusCodeLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseCpuLib/BaseCpuLib.inf [X64] [SLINK] BaseReportStatusCodeLibNull Building ... /Users/exzo/src/edk2/Clover/Library/WaveLib/WaveLib.inf [X64] [CC] SetMem Building ... /Users/exzo/src/edk2/Clover/Library/OpensslLib/OpensslLibNull.inf [X64] [CC] DebugLib [CC] CheckSum Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiMemoryLib/UefiMemoryLib.inf [X64] [SLINK] BaseDebugLibNull Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf [X64] Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf [X64] Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf [X64] [CC] ScanMem64Wrapper Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf [X64] [CC] PcdLib [CC] SwitchStack [CC] IoHighLevel [SLINK] BasePcdLibNull Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf [X64] [CC] OpensslLibNull /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/Clover/Library/OpensslLib/OpensslLibNull/OUTPUT/OpensslLibNull.obj has no symbols warning: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning for library: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/Clover/Library/OpensslLib/OpensslLibNull/OUTPUT/OpensslLib.lib the table of contents is empty (no object file members in the library define global symbols) [SLINK] OpensslLib [CC] ScanMem64Wrapper Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf [X64] [CC] WaveLib [CC] ScanMem32Wrapper [SLINK] WaveLib [CC] SwapBytes64 Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf [X64] [CC] UefiShellInstall1CommandsLib [SLINK] UefiShellInstall1CommandsLib Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.inf [X64] [CC] IoLibGcc [CC] PrintLibInternal [CC] ScanMem16Wrapper [CC] SwapBytes32 [CC] ScanMem32Wrapper [CC] IoLib [CC] ScanMem8Wrapper [CC] PrintLib [CC] SetSize [NASM] CpuSleep [CC] SwapBytes16 [SLINK] BasePrintLib Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf [X64] [CC] UefiShellLevel1CommandsLib [CC] ScanMem16Wrapper [CC] Type [CC] ZeroMemWrapper [CC] UefiShellLevel2CommandsLib [CC] LongJump [CC] CompareMemWrapper [CC] SetJump [CC] ScanMem8Wrapper [CC] Connect [CC] Exit [CC] SetMem64Wrapper [CC] RShiftU64 [NASM] IoFifo [CC] Touch [NASM] CpuFlushTlb [CC] ZeroMemWrapper [CC] Comp [CC] SetMem32Wrapper [SLINK] BaseIoLibIntrinsic Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf [X64] [SLINK] BaseCpuLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf [X64] [CC] RRotU64 [CC] SetMem16Wrapper [CC] Goto [CC] Devices [CC] RRotU32 [CC] CompareMemWrapper [CC] Ver [CC] TimeDate [CC] SetMemWrapper [CC] UefiHiiServicesLib [CC] MultU64x64 [SLINK] UefiHiiServicesLib Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellNetwork2CommandsLib/UefiShellNetwork2CommandsLib.inf [X64] [CC] Mode [CC] SetMem64Wrapper [CC] CopyMemWrapper [CC] MultU64x32 [CC] UefiShellBcfgCommandLib [CC] UefiShellLevel3CommandsLib [CC] OpenInfo [CC] IsZeroBufferWrapper [CC] SetMem32Wrapper [CC] MultS64x64 [CC] Load [CC] UefiShellNetwork2CommandsLib [CC] UefiShellCommandLib [CC] AutoGen [CC] ModU64x32 [SLINK] UefiShellBcfgCommandLib Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf [X64] [CC] MemLibGeneric [CC] SetMem16Wrapper [CC] MemMap [CC] Cls [CC] DxeNetLib [CC] LShiftU64 [CC] Disconnect [CC] MemLibGuid [CC] SetMemWrapper [CC] LRotU64 [CC] UefiShellNetwork1CommandsLib [CC] CopyMem [CC] Alias [CC] LRotU32 [SLINK] BaseMemoryLib Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Library/UefiShellLib/UefiShellLib.inf [X64] [CC] If [CC] Ls [CC] Reconnect [CC] CopyMemWrapper [CC] LowBitSet64 [CC] Ping6 [CC] IsZeroBufferWrapper [CC] Echo [CC] LowBitSet32 [CC] Unload [CC] ConsistMapping [CC] HighBitSet64 [SLINK] UefiShellCommandLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf [X64] [CC] MemLibGeneric [CC] NetBuffer [CC] Pause [CC] HighBitSet32 [CC] For [SLINK] DxeNetLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf [X64] [CC] Compress [CC] GetPowerOfTwo64 [CC] ApplicationEntryPoint [CC] MemLibGuid [CC] Map [SLINK] UefiApplicationEntryPoint Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiUsbLib/UefiUsbLib.inf [X64] [CC] DrvDiag [CC] Ping [CC] GetMtc [CC] GetPowerOfTwo32 [CC] Shift [CC] EfiCompress [CC] MemLib [SLINK] UefiMemoryLib Building ... /Users/exzo/src/edk2/Clover/Library/VideoBiosPatchLib/VideoBiosPatchLib.inf [X64] [CC] DivU64x64Remainder [CC] Hid [CC] Reset [CC] UefiFileHandleLib [CC] DivU64x32Remainder [CC] Stall [SLINK] UefiFileHandleLib Building ... /Users/exzo/src/edk2/Clover/Library/MemLogLibDefault/MemLogLibDefault.inf [X64] [CC] EfiDecompress [CC] Help [CC] Ifconfig6 [CC] DivU64x32 [CC] UsbDxeLib [CC] VideoBiosPatchLib [SLINK] UefiUsbLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf [X64] [CC] Set [CC] DivS64x64Remainder [CC] AutoGen [CC] AutoGen [CC] MemLogLib [SLINK] UefiShellNetwork2CommandsLib [CC] Ifconfig [CC] UefiHandleParsingLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf [X64] [SLINK] UefiShellLevel1CommandsLib [CC] ARShiftU64 Building ... /Users/exzo/src/edk2/Clover/Library/OsxBdsPlatformLib/PlatformBds.inf [X64] [CC] Dh [CC] AutoGen [SLINK] MemLogLibDefault Building ... /Users/exzo/src/edk2/Clover/Library/GenericBdsLib/GenericBdsLib.inf [X64] [CC] PciLib [CC] Dmem [SLINK] UefiShellLevel3CommandsLib Building ... /Users/exzo/src/edk2/Clover/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf [X64] [SLINK] BasePciLibCf8 Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf [X64] [CC] MkDir [CC] AutoGen [CC] BitField [SLINK] UefiShellNetwork1CommandsLib [CC] AutoGen Building ... /Users/exzo/src/edk2/MdePkg/Library/DxePcdLib/DxePcdLib.inf [X64] [SLINK] UefiHandleParsingLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf [X64] [CC] CpuDeadLoop [CC] LzmaDecompress [CC] PciCf8Lib [CC] 915resolution [CC] DevicePath [SLINK] BasePciCf8Lib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf [X64] [CC] Drivers [CC] Cpu [CC] LoadPciRom [CC] Cd [CC] LinkedList [CC] edid [CC] BmConnect [SLINK] VideoBiosPatchLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf [X64] [CC] UefiShellLib [SLINK] UefiShellLib Building ... /Users/exzo/src/edk2/Clover/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf [X64] [CC] CustomizedDisplayLib [CC] DevTree [CC] DxePcdLib [SLINK] DxePcdLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf [X64] [CC] BdsPlatform [CC] BdsConnect [CC] UefiSortLib [CC] UefiHiiServicesLib [SLINK] UefiSortLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf [X64] [CC] Mm [SLINK] UefiHiiServicesLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf [X64] [CC] Cp [CC] BmMisc [CC] DxeSecurityManagementLib [CC] PlatformData [SLINK] DxeSecurityManagementLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf [X64] [SLINK] DuetBds Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf [X64] [CC] DxeCapsuleLibNull [CC] LzFind [SLINK] DxeCapsuleLibNull Building ... /Users/exzo/src/edk2/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf [X64] [CC] CustomizedDisplayLibInternal [CC] AuthVariableLibNull [CC] Parse [CC] TpmMeasurementLibNull [CC] VarCheckLib [CC] SetVar [SLINK] AuthVariableLibNull Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf [X64] [SLINK] TpmMeasurementLibNull Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf [X64] [SLINK] VarCheckLib [CC] AutoGen Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf [X64] [SLINK] CustomizedDisplayLib Building ... /Users/exzo/src/edk2/MdePkg/Library/DxeHobLib/DxeHobLib.inf [X64] [CC] DxeServicesTableLib [SLINK] DxeServicesTableLib [CC] InternalGetSpinLockProperties [CC] BmConsole Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf [X64] [CC] DrvCfg [CC] BdsMisc [CC] DriverEntryPoint [CC] GccInline [CC] Rm [CC] SafeString [CC] SerMode [CC] RuntimeLib [SLINK] UefiDriverEntryPoint Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf [X64] [SLINK] UefiRuntimeLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf [X64] [CC] SynchronizationGcc [CC] HobLib [CC] UefiShellDriver1CommandsLib [SLINK] BaseSynchronizationLib [SLINK] DxeHobLib Building ... /Users/exzo/src/edk2/MdePkg/Library/DxeServicesLib/DxeServicesLib.inf [X64] [CC] MemoryAllocationLib [CC] DebugAgentLibNull [CC] CpuExceptionHandlerLibNull Building ... /Users/exzo/src/edk2/Clover/Library/DuetTimerLib/DuetTimerLib.inf [X64] [SLINK] UefiMemoryAllocationLib Building ... /Users/exzo/src/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf [X64] [SLINK] DebugAgentLibNull [SLINK] CpuExceptionHandlerLibNull Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf [X64] Building ... /Users/exzo/src/edk2/Clover/Library/VBoxPeCoffLib/VBoxPeCoffLib.inf [X64] [CC] PeCoffGetEntryPoint [CC] Mv [CC] X86TimerLib [CC] AutoGen [CC] DxeExtractGuidedSectionLib [SLINK] BasePeCoffGetEntryPointLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf [X64] [CC] String [SLINK] DuetTimerLib [SLINK] DxeExtractGuidedSectionLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf [X64] [SLINK] UefiShellDriver1CommandsLib [CC] BdsConsole Building ... /Users/exzo/src/edk2/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf [X64] [CC] DxeServicesLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiLib/UefiLib.inf [X64] [CC] LzmaDec [CC] HiiLib [CC] PerformanceLib [CC] FilePaths [SLINK] BasePerformanceLibNull Building ... /Users/exzo/src/edk2/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf [X64] [CC] X86Cache [CC] Allocate [SLINK] BaseCacheMaintenanceLib Building ... /Users/exzo/src/edk2/MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf [X64] [CC] GuidedSectionExtraction [SLINK] DxeServicesLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf [X64] [CC] Attrib [CC] BasePeCoff [SLINK] LzmaDecompressLib Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf [X64] [CC] HiiString [CC] PeCoffExtraActionLib [CC] BaseUefiDecompressLib [CC] PeCoffLoaderEx [CC] UefiLibPrint [SLINK] PeCoffExtraActionLibNull Building ... /Users/exzo/src/edk2/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf [X64] [SLINK] BaseUefiDecompressLib [CC] HobLib Building ... /Users/exzo/src/edk2/MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf [X64] [SLINK] VBoxPeCoffLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf [X64] [SLINK] DxeCoreHobLib [CC] UefiBootServicesTableLib [SLINK] UefiBootServicesTableLib [CC] Vol [CC] HiiLanguage [CC] BmBoot [CC] UefiRuntimeServicesTableLib [SLINK] UefiHiiLib [NASM] Thunk16 [CC] DevicePathUtilities [CC] UefiNotTiano [SLINK] UefiRuntimeServicesTableLib [CC] DxeCoreEntryPoint [SLINK] DxeCoreEntryPoint [CC] Pci [CC] MemoryAllocationLib [CC] DxeCoreMemoryProfileLibNull [SLINK] DxeCoreMemoryAllocationLib [CC] AutoGen [NASM] WriteTr [SLINK] UefiShellLevel2CommandsLib [CC] BmBootDescription [CC] UefiDriverModel [CC] DevicePathToText [CC] DmpStore [CC] BdsBoot [NASM] Lfence [CC] Console [CC] Non-existing [CC] Dblk [CC] String [CC] BmLoadOption [CC] Math64 [CC] AutoGen [CC] Unaligned [SLINK] GenericBdsLib [CC] EventLogInfo [CC] X86WriteIdtr [CC] UefiLib [CC] X86WriteGdtr [CC] X86Thunk [CC] BmHotkey [CC] Acpi [CC] X86ReadIdtr [SLINK] UefiLib [CC] X86ReadGdtr [CC] DevicePathFromText [CC] X86Msr [CC] BmDriverHealth [SLINK] UefiBootManagerLib [CC] X86GetInterruptState [CC] UefiDevicePathLib [SLINK] UefiDevicePathLib [CC] X86FxSave [CC] X86FxRestore [CC] PrintInfo [CC] X86EnablePaging64 [CC] X86EnablePaging32 [CC] X86DisablePaging64 [CC] X86DisablePaging32 [CC] X86RdRand [CC] QueryTable [CC] X86PatchInstruction [CC] X86SpeculationBarrier [CC] GccInline [CC] SmbiosView [NASM] SwitchStack [CC] LibSmbiosView [CC] UefiShellDebug1CommandsLib [NASM] SetJump [CC] EditTitleBar [NASM] LongJump [CC] EditInputBar [NASM] EnableDisableInterrupts [CC] EditStatusBar [CC] EditMenuBar [NASM] DisablePaging64 [CC] Edit [NASM] CpuId [NASM] CpuIdEx [NASM] EnableCache [CC] FileBuffer [NASM] DisableCache [CC] MainTextEditor [NASM] RdRand [CC] Misc [CC] ChkStkGcc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (LongJump.obj) in output file used for input files: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/LongJump.obj and: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/LongJump.obj (due to use of basename, truncation, blank padding or duplicate input files) /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (SetJump.obj) in output file used for input files: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/SetJump.obj and: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/SetJump.obj (due to use of basename, truncation, blank padding or duplicate input files) /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (SwitchStack.obj) in output file used for input files: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/SwitchStack.obj and: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/SwitchStack.obj (due to use of basename, truncation, blank padding or duplicate input files) [SLINK] BaseLib Building ... /Users/exzo/src/edk2/Clover/OsxLowMemFixDrv/OsxLowMemFixDrv.inf [X64] Building ... /Users/exzo/src/edk2/Clover/OsxAptioFixDrv/OsxAptioFix3Drv.inf [X64] Building ... /Users/exzo/src/edk2/Clover/OsxAptioFixDrv/OsxAptioFixDrv.inf [X64] Building ... /Users/exzo/src/edk2/Clover/rEFIt_UEFI/refit.inf [X64] Building ... /Users/exzo/src/edk2/Clover/bdmesg_efi/bdmesg.inf [X64] Building ... /Users/exzo/src/edk2/Clover/Drivers/AudioDxe/AudioDxe.inf [X64] Building ... /Users/exzo/src/edk2/Clover/Protocols/EmuVariableUefi/EmuVariableRuntimeDxe.inf [X64] Building ... /Users/exzo/src/edk2/Clover/Protocols/OsxFatBinaryDrv/OsxFatBinaryDrv.inf [X64] Building ... /Users/exzo/src/edk2/Clover/Protocols/DumpUefiCalls/DumpUefiCalls.inf [X64] Building ... /Users/exzo/src/edk2/Clover/Protocols/AppleKeyFeeder/AppleKeyFeeder.inf [X64] Building ... /Users/exzo/src/edk2/Clover/Protocols/AppleKeyAggregator/AppleKeyAggregator.inf [X64] [CC] OsxLowMemFixDrv Building ... /Users/exzo/src/edk2/Clover/Protocols/HashServiceFix/HashServiceFix.inf [X64] [CC] OsxAptioFix3Drv [CC] bdmesg [CC] OsxAptioFixDrv [CC] HdaCodecComponentName [CC] BufferImage [CC] OsxFatBinaryDrv [CC] DumpUefiCalls [CC] InitVariable [CC] AutoGen [CC] AppleKeyFeeder [SLINK] bdmesg [CC] HashServiceFix [CC] AutoGen [CC] Lib [DLINK1] bdmesg [CC] Clipboard [MTOC] bdmesg [SLINK] OsxFatBinaryDrv [CC] HdaCodecInfo [CC] AppleKeyAggregator [DLINK1] OsxFatBinaryDrv [MTOC] OsxFatBinaryDrv [GENFW] bdmesg Building ... /Users/exzo/src/edk2/Clover/Protocols/AppleUITheme/AppleUITheme.inf [X64] [CC] AppleKeyMapUtils [CC] BootFixes [CC] AutoGen [GENFW] OsxFatBinaryDrv Building ... /Users/exzo/src/edk2/Clover/Protocols/AppleImageCodec/AppleImageCodec.inf [X64] [SLINK] OsxLowMemFixDrv [CC] AutoGen [SLINK] AppleKeyAggregator [DLINK1] OsxLowMemFixDrv [CC] BootFixes3 [MTOC] OsxLowMemFixDrv [CC] DiskImage [DLINK1] AppleKeyAggregator [MTOC] AppleKeyAggregator [CC] HdaCodecAudioIo [CC] AppleUITheme [CC] SimpleTextProxy [GENFW] OsxLowMemFixDrv Building ... /Users/exzo/src/edk2/Clover/Protocols/FirmwareVolume/FirmwareVolume.inf [X64] [CC] BdsConnect [CC] DecodedKernelCheck [GENFW] AppleKeyAggregator Building ... /Users/exzo/src/edk2/Clover/Protocols/SMCHelper/SMCHelper.inf [X64] [CC] AppleImageCodec [CC] Lib [CC] AutoGen [CC] DecodedKernelCheck [SLINK] AppleUITheme [CC] SimpleTextExProxy [CC] FileImage [CC] BootArgs [DLINK1] AppleUITheme [MTOC] AppleUITheme [CC] FirmwareVolume [CC] EmuVariable [GENFW] AppleUITheme Building ... /Users/exzo/src/edk2/Clover/Protocols/MsgLog/MsgLog.inf [X64] [CC] AutoGen [CC] SMCHelper [CC] BootArgs [SLINK] AppleKeyFeeder [CC] AutoGen [DLINK1] AppleKeyFeeder [SLINK] FirmwareVolume [MTOC] AppleKeyFeeder [CC] VMem [CC] HexEdit [CC] AutoGen [SLINK] EmuVariableUefi [CC] AutoGen [CC] BootServices [DLINK1] FirmwareVolume [CC] MsgLog [MTOC] FirmwareVolume [SLINK] SMCHelper [GENFW] AppleKeyFeeder Building ... /Users/exzo/src/edk2/Clover/FSInject/FSInject.inf [X64] [DLINK1] EmuVariableUefi [MTOC] EmuVariableUefi [CC] HdaCodec [CC] VMem [DLINK1] SMCHelper [MTOC] SMCHelper [CC] sha1 [GENFW] FirmwareVolume Building ... /Users/exzo/src/edk2/Clover/LegacyBios/Region2Dxe/LegacyRegion2Dxe.inf [X64] [GENFW] EmuVariableUefi Building ... /Users/exzo/src/edk2/Clover/CloverEFI/BiosKeyboard/KeyboardDxe.inf [X64] [CC] AutoGen [GENFW] SMCHelper Building ... /Users/exzo/src/edk2/Clover/Drivers/PartitionDxe/PartitionDxe.inf [X64] [SLINK] MsgLog [CC] AutoGen [DLINK1] MsgLog [CC] RuntimeServices [CC] HdaControllerComponentName [MTOC] MsgLog [SLINK] HashServiceFix [CC] Lib [DLINK1] HashServiceFix [GENFW] MsgLog Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf [X64] [MTOC] HashServiceFix [CC] ComponentName [CC] Lib [CC] AppleKey [CC] LegacyRegion2 [GENFW] HashServiceFix Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf [X64] [CC] Log [CC] AutoGen [CC] device_tree [CC] UnicodeCollationEng [SLINK] LegacyRegion2Dxe [CC] MemLog [CC] ComponentName [CC] FSInject [CC] Mbr [CC] ComponentName [CC] HdaControllerMem [DLINK1] LegacyRegion2Dxe [CC] device_tree [MTOC] LegacyRegion2Dxe [CC] AutoGen [CC] NVRAMDebug [GENFW] LegacyRegion2Dxe Building ... /Users/exzo/src/edk2/Clover/CloverEFI/OsxAcpiTableDxe/AcpiTableDxe.inf [X64] [SLINK] EnglishDxe [CC] Test [DLINK1] EnglishDxe [CC] HdaControllerInfo [CC] NVRAMDebug [CC] MainHexEditor [MTOC] EnglishDxe [CC] FileLib [CC] Mach-O [CC] Gpt [GENFW] EnglishDxe Building ... /Users/exzo/src/edk2/Clover/Drivers/Ps2MouseDxe/Ps2MouseDxe.inf [X64] [CC] AutoGen [SLINK] FSInject [CC] Mach-O [CC] DiskIo [DLINK1] FSInject [CC] MemImage [CC] picopng [MTOC] FSInject [CC] DataHub [CC] HdaControllerHdaIo [GENFW] FSInject Building ... /Users/exzo/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/Ps2MouseAbsolutePointerDxe.inf [X64] [CC] ElTorito [CC] ComponentName [CC] AutoGen [SLINK] DiskIoDxe [DLINK1] DiskIoDxe [CC] Misc [MTOC] DiskIoDxe [CC] Fs [CC] load_bmp [CC] BiosKeyboard [NASM] AsmFuncsX64 [CC] main [CC] ComponentName [CC] Apple [GENFW] DiskIoDxe Building ... /Users/exzo/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf [X64] [NASM] AsmFuncsX64 [CC] AutoGen [CC] AcpiTableProtocol [CC] HdaController [CC] CommPs2 [SLINK] OsxAptioFixDrv [CC] LegacyBiosThunk [CC] load_icns [CC] ComponentName [DLINK1] OsxAptioFixDrv [MTOC] OsxAptioFixDrv [CC] AppleProtocols [CC] CommPs2 [CC] AcpiTable [CC] HdaModels [GENFW] OsxAptioFixDrv Building ... /Users/exzo/src/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf [X64] [CC] AutoGen [CC] AutoGen [CC] Partition [SLINK] KeyboardDxe [SLINK] AppleImageCodec [NASM] RTShims [DLINK1] KeyboardDxe [DLINK1] AppleImageCodec [MTOC] KeyboardDxe [CC] AutoGen [CC] Ps2Mouse [CC] AutoGen [MTOC] AppleImageCodec [CC] icns [SLINK] DumpUefiCalls [SLINK] AcpiTableDxe [CC] AudioDxe [CC] AutoGen [GENFW] KeyboardDxe Building ... /Users/exzo/src/edk2/PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf [X64] [SLINK] PartitionDxe [GENFW] AppleImageCodec [DLINK1] AcpiTableDxe [DLINK1] DumpUefiCalls Building ... /Users/exzo/src/edk2/MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouseDxe.inf [X64] [MTOC] AcpiTableDxe [CC] ComponentName [MTOC] DumpUefiCalls [CC] AutoGen [CC] AutoGen [DLINK1] PartitionDxe [CC] Ps2MouseAbsolutePointer [SLINK] OsxAptioFix3Drv [MTOC] PartitionDxe /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (Misc.obj) in output file used for input files: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/Clover/ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib/OUTPUT/HexEdit/Misc.obj and: /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/X64/Clover/ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib/OUTPUT/Edit/Misc.obj (due to use of basename, truncation, blank padding or duplicate input files) [CC] AutoGen [SLINK] UefiShellDebug1CommandsLib Building ... /Users/exzo/src/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf [X64] [GENFW] AcpiTableDxe [GENFW] DumpUefiCalls [SLINK] Ps2MouseDxe Building ... /Users/exzo/src/edk2/Clover/Drivers/UsbKbDxe/UsbKbDxe.inf [X64] [CC] AutoGen [DLINK1] OsxAptioFix3Drv Building ... /Users/exzo/src/edk2/Clover/Drivers/UsbBusDxe/UsbBusDxe.inf [X64] [MTOC] OsxAptioFix3Drv [SLINK] AudioDxe [GENFW] PartitionDxe Building ... /Users/exzo/src/edk2/Clover/Drivers/XhciDxe/XhciDxe.inf [X64] [DLINK1] Ps2MouseDxe [MTOC] Ps2MouseDxe [DLINK1] AudioDxe [CC] AutoGen [GENFW] OsxAptioFix3Drv Building ... /Users/exzo/src/edk2/MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf [X64] [MTOC] AudioDxe [CC] Ps2KbdCtrller [SLINK] Ps2MouseAbsolutePointerDxe [CC] ComponentName [GENFW] Ps2MouseDxe Building ... /Users/exzo/src/edk2/Clover/Drivers/OhciDxe/OhciDxe.inf [X64] [CC] PcatIsaAcpi [DLINK1] Ps2MouseAbsolutePointerDxe [GENFW] AudioDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf [X64] [MTOC] Ps2MouseAbsolutePointerDxe [CC] AppleKey [GENFW] Ps2MouseAbsolutePointerDxe Building ... /Users/exzo/src/edk2/Clover/LegacyBios/BlockIoDxe/BlockIoDxe.inf [X64] [CC] UsbMassBot [CC] MouseHid [CC] IsaAcpi [CC] IsaIo [CC] Ps2KbdTextIn [CC] ComponentName [CC] UsbDesc [CC] EhciUrb [CC] ComponentName [CC] UhciSched [CC] UsbMouse [CC] BiosBlkIo [CC] IsaBus [CC] Ps2Keyboard [CC] EfiKey [CC] AutoGen [CC] UsbMassImpl [CC] UsbHcMem [SLINK] IsaAcpi [CC] AutoGen [CC] Xhci [CC] UhciDebug [CC] AutoGen [SLINK] UsbMouseDxe [CC] AutoGen [SLINK] IsaBusDxe [DLINK1] IsaAcpi [SLINK] Ps2KeyboardDxe [MTOC] IsaAcpi [CC] UsbEnumer [DLINK1] UsbMouseDxe [MTOC] UsbMouseDxe [DLINK1] IsaBusDxe [DLINK1] Ps2KeyboardDxe [MTOC] IsaBusDxe [MTOC] Ps2KeyboardDxe [GENFW] IsaAcpi Building ... /Users/exzo/src/edk2/Clover/LegacyBios/VideoDxe/VideoDxe.inf [X64] [GENFW] UsbMouseDxe Building ... /Users/exzo/src/edk2/Clover/CloverEFI/BiosVideo/BiosVideo.inf [X64] [CC] Ohci [GENFW] IsaBusDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/GrubFS/src/UDF.inf [X64] [GENFW] Ps2KeyboardDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/GrubFS/src/NTFS.inf [X64] [CC] UsbMassBoot [CC] UhciQueue [CC] XhciReg [CC] EhciSched [CC] UsbBus [CC] UsbMassCbi [CC] lib [CC] OhciSched [CC] KeyBoard [CC] driver [CC] UhciReg [CC] driver [CC] EhciDebug [CC] UsbMassDiskInfo [CC] ComponentName [CC] UsbHcMem [CC] UsbHub [CC] AutoGen [CC] BiosInt13 [CC] EhciReg [CC] file [CC] AutoGen [SLINK] UsbMassStorageDxe [CC] OhciReg [CC] file [SLINK] UsbKbDxe [DLINK1] UsbMassStorageDxe [MTOC] UsbMassStorageDxe [DLINK1] UsbKbDxe [MTOC] UsbKbDxe [CC] ComponentName [CC] ComponentName [GENFW] UsbMassStorageDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/GrubFS/src/ISO9660.inf [X64] [CC] ComponentName [CC] grub_driver [GENFW] UsbKbDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/GrubFS/src/HFSPLUS.inf [X64] [CC] grub_driver [CC] Uhci [CC] LegacyBiosThunk [CC] OhciUrb [CC] driver [CC] UsbUtility [CC] grub_file [CC] BiosVideoNew [CC] driver [CC] AutoGen [CC] grub_file [CC] ComponentName [SLINK] BiosBlockIoDxe [CC] OhciDebug [DLINK1] BiosBlockIoDxe [CC] BiosVideo [MTOC] BiosBlockIoDxe [CC] AutoGen [CC] Ehci [SLINK] UsbBusDxe [CC] ComponentName [CC] AutoGen [GENFW] BiosBlockIoDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/GrubFS/src/EXFAT.inf [X64] [SLINK] UhciDxe [DLINK1] UsbBusDxe [CC] grub [MTOC] UsbBusDxe [CC] ComponentName [DLINK1] UhciDxe [CC] grub [MTOC] UhciDxe [CC] AutoGen [CC] ComponentName [GENFW] UsbBusDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/FatPkg/EnhancedFatDxe/Fat.inf [X64] [CC] file [SLINK] EhciDxe [CC] file [GENFW] UhciDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/VBoxFsDxe/VBoxReiserFS.inf [X64] [CC] LegacyBiosThunk [DLINK1] EhciDxe [MTOC] EhciDxe [CC] logging [CC] logging [CC] AutoGen [GENFW] EhciDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/VBoxFsDxe/VBoxExt4.inf [X64] [SLINK] CsmVideoDxe [CC] XhciSched [CC] grub_driver [CC] driver [CC] AutoGen [CC] grub_driver [CC] DirectoryCache [DLINK1] CsmVideoDxe [SLINK] BiosVideo [CC] UsbHcMem [MTOC] CsmVideoDxe [CC] missing [DLINK1] BiosVideo [MTOC] BiosVideo [GENFW] CsmVideoDxe [CC] missing Building ... /Users/exzo/src/edk2/Clover/FileSystems/VBoxFsDxe/VBoxExt2.inf [X64] [CC] AutoGen [GENFW] BiosVideo Building ... /Users/exzo/src/edk2/Clover/FileSystems/VBoxFsDxe/VBoxIso9660.inf [X64] [SLINK] OhciDxe [CC] DiskCache [DLINK1] OhciDxe [CC] path [MTOC] OhciDxe [CC] grub_file [CC] path [CC] grub_file [CC] UsbHcMem [GENFW] OhciDxe Building ... /Users/exzo/src/edk2/Clover/FileSystems/VBoxFsDxe/VBoxHfs.inf [X64] [CC] file [CC] fsw_ext4 [CC] fsw_reiserfs [CC] ComponentName [CC] grub [CC] FileName [CC] utf8 [CC] grub_driver [CC] fsw_ext2 [CC] grub [CC] utf8 [CC] AutoGen [SLINK] XhciDxe [CC] logging [CC] fsw_iso9660 [CC] Hash [CC] logging [DLINK1] XhciDxe [CC] device [MTOC] XhciDxe [CC] device [CC] grub_file [CC] fsw_core [GENFW] XhciDxe Building ... /Users/exzo/src/edk2/Clover/Protocols/DriverOverride/DriverOverride.inf [X64] [CC] fsw_core [CC] missing [CC] missing [CC] err [CC] err [CC] fsw_core [CC] DriverOverride [CC] fsw_efi_lib [CC] path [CC] grub [CC] fsw_efi_lib [CC] fsw_hfs [CC] path [CC] DirectoryManage [CC] AutoGen [CC] fsw_core [CC] fsw_efi_lib [SLINK] DriverOverride [CC] logging [DLINK1] DriverOverride [MTOC] DriverOverride [CC] utf8 [CC] ComponentName [CC] utf8 [GENFW] DriverOverride Building ... /Users/exzo/src/edk2/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf [X64] [CC] fsw_efi_lib [CC] missing [CC] fsw_efi [CC] fsw_efi [CC] fsw_core [CC] misc [CC] device [CC] ReadWrite [CC] path [CC] misc [CC] DataHub [CC] fsw_efi [CC] fsw_efi_lib [CC] list [CC] err [CC] OpenVolume [CC] list [CC] fsw_efi [CC] AutoGen [CC] utf8 [SLINK] DataHubDxe [CC] Open [DLINK1] DataHubDxe [MTOC] DataHubDxe [CC] fsw_lib [CC] fsw_lib [CC] fshelp [GENFW] DataHubDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf [X64] [CC] fshelp [CC] fsw_efi [CC] device [CC] AutoGen [CC] AutoGen [SLINK] VBoxExt4 [SLINK] VBoxReiserFS [CC] Misc [CC] fsw_lib [DLINK1] VBoxExt4 [DLINK1] VBoxReiserFS [MTOC] VBoxExt4 [MTOC] VBoxReiserFS [CC] misc [CC] err [CC] fsw_lib [CC] menu [GENFW] VBoxExt4 Building ... /Users/exzo/src/edk2/Clover/CloverEFI/OsxPciBusNoEnumerationDxe/PciBusNoEnumeration.inf [X64] [GENFW] VBoxReiserFS Building ... /Users/exzo/src/edk2/Clover/CloverEFI/PciRootBridgeDxe/PciRootBridge.inf [X64] [CC] AutoGen [SLINK] VBoxExt2 [CC] Init [CC] AutoGen [DLINK1] VBoxExt2 [CC] list [CC] ntfscomp [MTOC] VBoxExt2 [SLINK] VBoxIso9600 [DLINK1] VBoxIso9600 [GENFW] VBoxExt2 Building ... /Users/exzo/src/edk2/PcAtChipsetPkg/8254TimerDxe/8254Timer.inf [X64] [MTOC] VBoxIso9600 [CC] PciPowerManagement [CC] NvmExpressBlockIo [CC] gzio [CC] fsw_lib [CC] udf [GENFW] VBoxIso9600 Building ... /Users/exzo/src/edk2/Clover/CloverEFI/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf [X64] [CC] Info [CC] fshelp [CC] AutoGen [CC] AutoGen [SLINK] VBoxHfs [CC] ComponentName [CC] Timer [SLINK] GrubUDF [CC] PcatPciRootBridge [CC] device [DLINK1] VBoxHfs [MTOC] VBoxHfs [DLINK1] GrubUDF [MTOC] GrubUDF [CC] PcRtcEntry [CC] PciRomTable [CC] misc [GENFW] VBoxHfs Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/Metronome/Metronome.inf [X64] [CC] FileSpace [CC] AutoGen [GENFW] GrubUDF Building ... /Users/exzo/src/edk2/Clover/CloverEFI/AcpiReset/Reset.inf [X64] [SLINK] Timer [CC] PcatPciRootBridgeDevicePath [CC] err [DLINK1] Timer [MTOC] Timer [CC] list [CC] PciDriverOverride [CC] Metronome [GENFW] Timer Building ... /Users/exzo/src/edk2/PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf [X64] [CC] Flush [CC] Reset [CC] screen [CC] NvmExpress [CC] PcRtc [CC] AutoGen [CC] ntfs [SLINK] Metronome [CC] fshelp [CC] PciOptionRomSupport [CC] AutoGen [CC] PcatPciRootBridgeIo [DLINK1] Metronome [MTOC] Metronome [CC] Fat [SLINK] AcpiReset [CC] 8259 [CC] AutoGen [CC] NvmExpressDiskInfo [CC] AutoGen [DLINK1] AcpiReset [SLINK] PcRtc [MTOC] AcpiReset [GENFW] Metronome [SLINK] GrubNTFS Building ... /Users/exzo/src/edk2/Clover/CloverEFI/CpuDxe/Cpu.inf [X64] [DLINK1] PcRtc [DLINK1] GrubNTFS [MTOC] PcRtc [CC] PciEnumerator [MTOC] GrubNTFS [GENFW] AcpiReset Building ... /Users/exzo/src/edk2/Clover/CloverEFI/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf [X64] [CC] AutoGen [CC] Delete [CC] iso9660 [SLINK] Legacy8259 [GENFW] PcRtc Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/EbcDxe/EbcDxe.inf [X64] [GENFW] GrubNTFS [DLINK1] Legacy8259 [CC] DeviceIo Building ... /Users/exzo/src/edk2/Clover/CloverEFI/OsxBdsDxe/BdsDxe.inf [X64] [MTOC] Legacy8259 [CC] misc [CC] Data [CC] AutoGen [GENFW] Legacy8259 Building ... /Users/exzo/src/edk2/Clover/CloverEFI/OsxEfiLdr/EfiLdr.inf [X64] [SLINK] GrubISO9660 [CC] CpuIo2Dxe [CC] EbcDebuggerHook [DLINK1] GrubISO9660 [MTOC] GrubISO9660 [CC] NvmExpressHci [CC] list [CC] PcatIo [CC] UnicodeCollation [GENFW] GrubISO9660 Building ... /Users/exzo/src/edk2/Clover/CloverEFI/OsxSmbiosGenDxe/SmbiosGen.inf [X64] [CC] PciEnumeratorSupport [CC] HwErrRecSupport [CC] EfiLoader [CC] exfat [CC] AutoGen [SLINK] CpuIo2Dxe [NASM] CpuInterrupt [CC] AutoGen [DLINK1] CpuIo2Dxe [VFR] BdsDxe [MTOC] CpuIo2Dxe [SLINK] PcatPciRootBridge [CC] AutoGen [CC] AutoGen [SLINK] Fat [DLINK1] PcatPciRootBridge [CC] Debug [SLINK] GrubEXFAT [MTOC] PcatPciRootBridge [GENFW] CpuIo2Dxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf [X64] [CC] PciCommand [CC] fshelp [DLINK1] Fat [CC] DeviceManagerVfr [MTOC] Fat [GENFW] PcatPciRootBridge Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf [X64] [DLINK1] GrubEXFAT [CC] IO [CC] SmbiosGen [CC] NvmExpressPassthru [GENFW] Fat Building ... /Users/exzo/src/edk2/Clover/CloverEFI/GraphicsConsoleDxe/GraphicsConsoleDxe.inf [X64] [CC] Cpu [VFR] BdsDxe [MTOC] GrubEXFAT [CC] ComponentName [GENFW] GrubEXFAT Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf [X64] [CC] AutoGen [CC] DriverHealthVfr [CC] DevicePath [CC] AutoGen [CC] AutoGen [CC] PeLoader [CC] hfspluscomp [CC] ComponentName [SLINK] NvmExpressDxe [SLINK] SmbiosGenDxe [SLINK] Cpu [DLINK1] NvmExpressDxe [DLINK1] Cpu [DLINK1] SmbiosGenDxe [CC] AutoGen [MTOC] Cpu [MTOC] SmbiosGenDxe [MTOC] NvmExpressDxe [SLINK] DevicePathDxe [CC] Support [CC] LaffStd [CC] SmbiosDxe [DLINK1] DevicePathDxe [CC] PciDeviceSupport [GENFW] NvmExpressDxe [GENFW] SmbiosGenDxe [GENFW] Cpu Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf [X64] [MTOC] DevicePathDxe [CC] EbcExecute Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf [X64] Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf [X64] [GENFW] DevicePathDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf [X64] [CC] AutoGen [CC] AutoGen [SLINK] EfiLoader [CC] common [SLINK] SmbiosDxe [DLINK1] EfiLoader [MTOC] EfiLoader [CC] PciBus [DLINK1] SmbiosDxe [MTOC] SmbiosDxe [CC] HiiDatabaseEntry [GENFW] EfiLoader Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf [X64] [CC] EbcInt [CC] ComponentName [GENFW] SmbiosDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf [X64] [CC] ConSplitterGraphics [CC] hfsplus [CC] GraphicsConsole [CC] EbcSupport [CC] DeviceManager [CC] SecurityStub [CC] NullMemoryTest [CC] ComponentName [CC] AutoGen [CC] AutoGen [VFR] BdsDxe [CC] PciIo [CC] ConPlatform [SLINK] GraphicsConsoleDxe [SLINK] GrubHFSPLUS [CC] legacy [DLINK1] GraphicsConsoleDxe [CC] AutoGen [DLINK1] GrubHFSPLUS [MTOC] GraphicsConsoleDxe [MTOC] GrubHFSPLUS [SLINK] NullMemoryTestDxe [CC] BootManagerVfr [CC] Defer3rdPartyImageLoad [CC] AutoGen [CC] AutoGen [DLINK1] NullMemoryTestDxe [SLINK] PciBusNoEnumerationDxe [SLINK] ConPlatformDxe [GENFW] GraphicsConsoleDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf [X64] [MTOC] NullMemoryTestDxe [GENFW] GrubHFSPLUS Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf [X64] [CC] Image [DLINK1] PciBusNoEnumerationDxe [DLINK1] ConPlatformDxe [MTOC] PciBusNoEnumerationDxe [MTOC] ConPlatformDxe [GENFW] NullMemoryTestDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf [X64] [NASM] EbcLowLevel [CC] AutoGen [SLINK] SecurityStubDxe [GENFW] PciBusNoEnumerationDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf [X64] [GENFW] ConPlatformDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf [X64] [DLINK1] SecurityStubDxe [MTOC] SecurityStubDxe [CC] BootManager [CC] CapsuleService [CC] AutoGen [CC] ImageEx [CC] Reclaim [SLINK] EbcDxe [GENFW] SecurityStubDxe Building ... /Users/exzo/src/edk2/MdeModulePkg/Universal/PCD/Dxe/Pcd.inf [X64] [CC] MonotonicCounter [VFR] BdsDxe [DLINK1] EbcDxe [CC] Crc32 [MTOC] EbcDxe [CC] WatchdogTimer [CC] SaveLongModeContext [GENFW] EbcDxe Building ... /Users/exzo/src/edk2/Clover/CloverEFI/OsxDxeCore/DxeMain.inf [X64] [CC] FE [CC] AutoGen [SLINK] MonotonicCounterRuntimeDxe [CC] AutoGen [DLINK1] MonotonicCounterRuntimeDxe [SLINK] WatchdogTimer [MTOC] MonotonicCounterRuntimeDxe [CC] Runtime [CC] CapsuleReset [CC] FormDisplay [DLINK1] WatchdogTimer [MTOC] WatchdogTimer [GENFW] MonotonicCounterRuntimeDxe Building ... /Users/exzo/src/edk2/Clover/CloverEFI/OsxDxeIpl/DxeIpl.inf [X64] [CC] Pcd [GENFW] WatchdogTimer Building ... /Users/exzo/src/edk2/Clover/ShellPkg/Application/Shell/Shell.inf [X64] [CC] AutoGen [CC] FileExplorer [CC] AutoGen [SLINK] RuntimeDxe [SLINK] CapsuleRuntimeDxe [DLINK1] RuntimeDxe [DLINK1] CapsuleRuntimeDxe [MTOC] RuntimeDxe [MTOC] CapsuleRuntimeDxe [CC] DxeInit [CC] CoreSectionExtraction [GENFW] RuntimeDxe [GENFW] CapsuleRuntimeDxe [CC] ConSplitter [CC] ProcessOptions [CC] Setup [CC] Service [CC] LegacyTable [CC] AutoGen [CC] BootMaint [SLINK] ConSplitterDxe [CC] loader [DLINK1] ConSplitterDxe [MTOC] ConSplitterDxe [CC] AutoGen [SLINK] PcdDxe [CC] Image [CC] Variable [GENFW] ConSplitterDxe [CC] HobGeneration [DLINK1] PcdDxe [MTOC] PcdDxe [CC] BBSsupport [GENFW] PcdDxe [CC] Debug [CC] tool [CC] VariableDxe [CC] InputHandler [CC] DebugImageInfo [CC] Shell [CC] ConfigRouting [CC] secureboot [CC] EnterDxeCore [CC] Measurement [CC] IfrParse [CC] securehash [CC] Stall [CC] UpdatePage [CC] Popup [CC] securemenu [CC] Paging [CC] TcgMorLockDxe [CC] SetWatchdogTimer [CC] securevars [CC] AutoGen [CC] AutoGen [SLINK] DisplayEngine [SLINK] DxeIpl [CC] ShellParametersProtocol [DLINK1] DisplayEngine [CC] VarCheck [MTOC] DisplayEngine [DLINK1] DxeIpl [MTOC] DxeIpl [CC] String [CC] Variable [CC] InstallConfigurationTable [GENFW] DisplayEngine [GENFW] DxeIpl [CC] VariableExLib [CC] bootscreen [CC] Data [CC] Library [CC] SpeculationBarrierDxe [CC] Expression [CC] AutoGen [SLINK] VariableRuntimeDxe [DLINK1] VariableRuntimeDxe [MTOC] VariableRuntimeDxe [CC] lockedgraphics [GENFW] VariableRuntimeDxe [CC] DriverSupport [CC] ShellProtocol [CC] BootOption [CC] Notify [CC] Database [CC] egemb_icons [CC] BmLib [CC] Presentation [VFR] BdsDxe [CC] Locate [CC] FileHandleWrappers [CC] AutoGen [CC] Bm [SLINK] SetupBrowser [DLINK1] SetupBrowser [CC] egemb_icons_dark [MTOC] SetupBrowser [GENFW] SetupBrowser [CC] ShellEnvVar [CC] Handle [CC] Font [CC] Hotkey [CC] egemb_font [CC] ShellManParser [CC] MemoryTest [CC] scroll_images [CC] Gcd [CC] Capsules [CC] ConsoleLogger [CC] ConfigKeywordHandler [CC] BmLib [CC] String [CC] Pool [CC] AutoGen [CC] ConsoleWrappers [SLINK] HiiDatabase [CC] Language [DLINK1] HiiDatabase [MTOC] HiiDatabase [CC] AutoGen [VFR] BdsDxe [GENFW] HiiDatabase [SLINK] Shell [CC] FrontPageVfr [DLINK1] Shell [MTOC] Shell [CC] Page [GENFW] Shell [CC] image [CC] MemData [CC] FrontPage [CC] load_icns [CC] FwVolBlock [CC] BdsEntry [CC] FwVolWrite [CC] AutoGen [SLINK] BdsDxe [CC] libscreen [CC] FwVolRead [DLINK1] BdsDxe [MTOC] BdsDxe [GENFW] BdsDxe [CC] FwVolAttrib [CC] Ffs [CC] FwVol [CC] Tpl [CC] Timer [CC] Event [CC] Dependency [CC] Dispatcher [CC] DxeProtocolNotify [CC] DxeMain [CC] lodepng [CC] AutoGen [SLINK] DxeCore [DLINK1] DxeCore [MTOC] DxeCore [GENFW] DxeCore [CC] text [CC] FloatLib [CC] nanosvg [CC] nanosvgrast [CC] VectorGraphics [CC] AcpiPatcher [CC] AmlGenerator [CC] ati [CC] BootLog [CC] BootOptions [CC] Console [CC] cpu [CC] DataHubCpu [CC] device_inject [CC] device_tree [CC] Edid [CC] Events [CC] hda [CC] HdaCodecDump [CC] gma [CC] guid [CC] Injectors [CC] LegacyBiosThunk [CC] LegacyBoot [CC] nvidia [CC] platformdata [CC] plist [CC] Pointer [CC] Settings [CC] smbios [CC] spd [CC] string [CC] StateGenerator [CC] usbfix [CC] b64cdecode [CC] FixBiosDsdt [CC] kernel_patcher [CC] kext_patcher [CC] kext_inject [CC] Nvram [CC] card_vlist [CC] PlatformDriverOverride [CC] Hibernate [CC] Net [CC] sound [CC] StartupSound [CC] AutoGen [SLINK] CLOVER [DLINK1] CLOVER [MTOC] CLOVER [GENFW] CLOVER Generating DUETEFIMAINFVX64 FV ######################################## ######################################## ######## GUID cross reference file can be found at /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/FV/Guid.xref FV Space Information DUETEFIMAINFVX64 [34%Full] 2752512 total, 944744 used, 1807768 free - Done - Build end time: 16:01:32, May.21 2019 Build total time: 00:00:43 Compressing DUETEFIMainFv.FV ... Encoding Compressing DxeCore.efi ... Encoding Compressing DxeIpl.efi ... Encoding Generate Loader Image ... Created /Users/exzo/src/edk2/Build/Clover/RELEASE_XCODE8/FV/Efildr64 879+0 records in 879+0 records out 450048 bytes transferred in 0.004524 secs (99480270 bytes/sec) Copy CloverEFI: -> boot7 Changing byte at 0xa9 of boot7 to show 7 as init message: 1+0 records in 1+0 records out 1 bytes transferred in 0.000015 secs (67650 bytes/sec) -> BOOTX64.efi -> CLOVERX64.efi Copy Mandatory drivers: -> FSInject-64.efi -> XhciDxe-64.efi -> SMCHelper-64.efi -> AudioDxe-64.efi -> AppleImageCodec-64.efi -> AppleKeyAggregator-64.efi -> AppleUITheme-64.efi -> FirmwareVolume-64.efi -> FSInject-64.efi -> DataHubDxe-64.efi -> SMCHelper-64.efi -> AudioDxe-64.efi -> AppleImageCodec-64.efi -> AppleUITheme-64.efi -> AppleKeyAggregator-64.efi -> FirmwareVolume-64.efi -> VBoxHfs-64.efi -> GrubEXFAT-64.efi -> GrubISO9660-64.efi -> GrubNTFS-64.efi -> GrubUDF-64.efi -> AptioMemoryFix-64.efi -> AptioInputFix-64.efi -> AppleUISupport-64.efi -> ApfsDriverLoader-64.efi -> ApfsDriverLoader-64.efi -> AppleImageLoader-64.efi -> AppleImageLoader-64.efi -> CsmVideoDxe-64.efi -> EnglishDxe-64.efi -> EmuVariableUefi-64.efi -> Fat-64.efi -> NvmExpressDxe-64.efi -> OsxAptioFix3Drv-64.efi -> OsxAptioFixDrv-64.efi -> OsxFatBinaryDrv-64.efi -> OsxLowMemFixDrv-64.efi -> PartitionDxe-64.efi -> Ps2MouseDxe-64.efi -> UsbKbDxe-64.efi -> UsbMouseDxe-64.efi -> VBoxExt2-64.efi -> VBoxExt4-64.efi -> VBoxIso9600-64.efi -> AppleKeyFeeder-64.efi -> HashServiceFix-64.efi Copy Applications: -> bdmesg.efi -> Shell64U.efi Done! Generating BootSectors make: Nothing to be done for `all'. Done! rm -rf sym obj dst CloverPrefpane/build CloverUpdater/build ================================================================================ MAKE PKG <-------------------------------------------------- ========= Translating Resources ======== /Users/exzo/src/edk2/Clover/CloverPackage/package/../../../../opt/local GNU gettext utilities is mandatory to build Clover package. Use the /Users/exzo/src/edk2/Clover/buildgettext.sh script to build them. make: *** [pkg] Error 1 o_Ops, MAKE PKG exited with error(s), aborting.. Link to comment Share on other sites More sharing options...
vector sigma Posted May 21, 2019 Share Posted May 21, 2019 1 hour ago, stinga11 said: I remove this part # ...gettext and mtoc does nothing in Linux because we cannot compile the .pkg if [[ "$SYSNAME" == Darwin ]]; then printHeader "gettext check:" if needGETTEXT && [[ ! -x "${TOOLCHAIN_DIR}"/bin/gettext ]]; then # buildgettext.sh is buggie: # suppose during the download a problem occour you can have an incomplete "gettext-latest.tar.gz" from a previous execution, # but buildgettext.sh think that is already downloaded and will try to decompress this incomplete archive, always failing! # That's why we remove the archive! if [[ -f "${DIR_DOWNLOADS}"/gettext-latest.tar.gz ]]; then rm -f "${DIR_DOWNLOADS}"/gettext-latest.tar.gz; fi doSomething --run-script "${DIR_MAIN}"/edk2/Clover/buildgettext.sh fi printHeader "mtoc check:" if [[ ! -x "${TOOLCHAIN_DIR}/bin/mtoc.NEW" ]]; then printWarning "mtoc not found, installing...\n" doSomething --run-script "${DIR_MAIN}"/edk2/Clover/buildmtoc.sh echo "mtoc successfully installed in ${TOOLCHAIN_DIR}/bin." else echo "mtoc found in ${TOOLCHAIN_DIR}/bin." fi export MTOC_PREFIX="${TOOLCHAIN_DIR}/bin/" printThickLine; echo fi But now I have the following error bad idea, mtoc prefix will not be exported.... an easy and sure way to fail. But I can't help but notice, that at https://ftp.gnu.org/pub/gnu/gettext/ a file called 'gettext-latest.tar.xz' doesn't exist: export GETTEXT_VERSION=${GETTEXT_VERSION:-gettext-latest} so if once it was there, now it's gone.... and it easy to understand that you are trying to fix the wrong script. P.S. shouldn't be better to do as @cecekpawon already suggested or to write that: export GETTEXT_VERSION=${GETTEXT_VERSION:-gettext-0.20} directly in buildgettext.sh since a gettext-latest link doesn't longer exist? 2 Link to comment Share on other sites More sharing options...
LockDown Posted May 22, 2019 Share Posted May 22, 2019 we also need to remove ShellPkg as stated here 1 Link to comment Share on other sites More sharing options...
SavageAUS Posted May 22, 2019 Share Posted May 22, 2019 Is this error going to be fixed in script? Status: gettext-latest.tar.xz not found. % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 Not Found 1 Link to comment Share on other sites More sharing options...
Slice Posted May 22, 2019 Share Posted May 22, 2019 14 hours ago, vector sigma said: bad idea, mtoc prefix will not be exported.... an easy and sure way to fail. But I can't help but notice, that at https://ftp.gnu.org/pub/gnu/gettext/ a file called 'gettext-latest.tar.xz' doesn't exist: export GETTEXT_VERSION=${GETTEXT_VERSION:-gettext-latest} so if once it was there, now it's gone.... and it easy to understand that you are trying to fix the wrong script. P.S. shouldn't be better to do as @cecekpawon already suggested or to write that: export GETTEXT_VERSION=${GETTEXT_VERSION:-gettext-0.20} directly in buildgettext.sh since a gettext-latest link doesn't longer exist? OK, committed. 2 Link to comment Share on other sites More sharing options...
SavageAUS Posted June 6, 2019 Share Posted June 6, 2019 New error on Catalina DP1, Xcode 10.2.1 Running edk2 build for CloverX64 using the command: build -D NO_GRUB_DRIVERS_EMBEDDED --conf=/Users/shane/src/edk2/Conf -D USE_LOW_EBDA -p Clover/Clover.dsc -a X64 -b RELEASE -t XCODE8 -n 5 python3: error: unable to find utility "python3", not a developer tool or in PATH o_Ops, ./ebuild.sh exited with error(s), aborting.. Link to comment Share on other sites More sharing options...
vector sigma Posted June 7, 2019 Share Posted June 7, 2019 38 minutes ago, SavageAUS said: python3: error: unable to find utility "python3", not a developer tool or in PATH I have my doubt that python3 is shipped with Catalina. You upgraded over an existing installion where you installed it? python --version && which python 1 Link to comment Share on other sites More sharing options...
SavageAUS Posted June 7, 2019 Share Posted June 7, 2019 19 minutes ago, vector sigma said: I have my doubt that python3 is shipped with Catalina. You upgraded over an existing installion where you installed it? python --version && which python I dont ever remember installing python but yes i just updated my Mojave install. Link to comment Share on other sites More sharing options...
SavageAUS Posted June 7, 2019 Share Posted June 7, 2019 6 hours ago, vector sigma said: I have my doubt that python3 is shipped with Catalina. You upgraded over an existing installion where you installed it? python --version && which python shane@MacBook-Pro ~ % python --version && which python Python 2.7.10 /usr/bin/python Link to comment Share on other sites More sharing options...
Matgen84 Posted June 7, 2019 Share Posted June 7, 2019 34 minutes ago, SavageAUS said: shane@MacBook-Pro ~ % python --version && which python Python 2.7.10 /usr/bin/python "Future versions of macOS won’t include Python 2.7. Instead, it’s recommended that you run python3 from within Terminal." (macObserver.com, june 5th, 2019) Link to comment Share on other sites More sharing options...
vector sigma Posted June 7, 2019 Share Posted June 7, 2019 5 hours ago, Matgen84 said: "Future versions of macOS won’t include Python 2.7. Instead, it’s recommended that you run python3 from within Terminal." (macObserver.com, june 5th, 2019) https://github.com/tianocore/tianocore.github.io/wiki/Tasks-BaseTools-Python3-Support Satus: not started Required completion date: End of year, 2020 1 Link to comment Share on other sites More sharing options...
Matgen84 Posted June 7, 2019 Share Posted June 7, 2019 23 minutes ago, vector sigma said: https://github.com/tianocore/tianocore.github.io/wiki/Tasks-BaseTools-Python3-Support Satus: not started Required completion date: End of year, 2020 I think macObserver.com talk about Catalina and future macOS version. They will be provided with python3 instead of python 2.7 Link to comment Share on other sites More sharing options...
vector sigma Posted June 7, 2019 Share Posted June 7, 2019 (edited) 4 minutes ago, Matgen84 said: I think macObserver.com talk about Catalina and future macOS version. They will be provided with python3 instead of python 2.7 Shipped version in Macs is customized to natively run Apple APIS, so this depend by them. Anyway tianocore will try to support it in 2021..... what to say, We hope Apple will not do that unti edk2 is ready? Edited June 7, 2019 by vector sigma 1 Link to comment Share on other sites More sharing options...
Pene Posted June 7, 2019 Share Posted June 7, 2019 16 hours ago, SavageAUS said: New error on Catalina DP1, Xcode 10.2.1 Running edk2 build for CloverX64 using the command: build -D NO_GRUB_DRIVERS_EMBEDDED --conf=/Users/shane/src/edk2/Conf -D USE_LOW_EBDA -p Clover/Clover.dsc -a X64 -b RELEASE -t XCODE8 -n 5 python3: error: unable to find utility "python3", not a developer tool or in PATH o_Ops, ./ebuild.sh exited with error(s), aborting.. You need to install developer tools: xcode-select --install After that it should work. Link to comment Share on other sites More sharing options...
Slice Posted June 7, 2019 Share Posted June 7, 2019 9 hours ago, Matgen84 said: "Future versions of macOS won’t include Python 2.7. Instead, it’s recommended that you run python3 from within Terminal." (macObserver.com, june 5th, 2019) Be ready to install python27 manually as I did. slice$ python --version && which python Python 2.7.15 /opt/local/bin/python I have to remind that we don't use Apple's nasm. We do use custom nasm. As well mtoc utility supposed to be compiled from Apple sources but we have no ready-to-use binary from Apple. 1 Link to comment Share on other sites More sharing options...
Recommended Posts