droples Posted August 26, 2016 Share Posted August 26, 2016 Build_Clover3.2 I have some problems TOOLCHAIN_DIR: /Users/droplets/src/opt/local NASM_PREFIX: /opt/local/bin/ NASM_VER: 2.12.02 Initializing workspace ./edksetup.sh: line 77: /Users/droplets/src/edk2/BaseTools/BuildEnv: No such file or directory [LIPO] /Users/droplets/src/edk2/Clover/CloverPackage/sym/utils/fdisk440 ================= Making all in boot1-install ================= [XCODE] boot1-install ================= Making all in partutil ================= [XCODE] partutil ================= Making all in bdmesg ================= [XCODE] bdmesg ================= Making all in clover-genconfig ================= [XCODE] clover-genconfig ** INSTALL FAILED ** The following build commands failed: CompileC /Users/droplets/src/edk2/Clover/CloverPackage/sym/build/clover-genconfig/clover-genconfig.build/Release/clover-genconfig.build/Objects-normal/x86_64/clover-genconfig.o clover-genconfig.c normal x86_64 c com.apple.compilers.llvm.clang.1_0.compiler CompileC /Users/droplets/src/edk2/Clover/CloverPackage/sym/build/clover-genconfig/clover-genconfig.build/Release/clover-genconfig.build/Objects-normal/i386/clover-genconfig.o clover-genconfig.c normal i386 c com.apple.compilers.llvm.clang.1_0.compiler (2 failures) make[2]: *** [/Users/droplets/src/edk2/Clover/CloverPackage/sym/utils/clover-genconfig] Error 65 make[1]: *** [all-recursive] Error 1 BuildClover3.2ErrorLog.txt Link to comment Share on other sites More sharing options...
Slice Posted August 26, 2016 Share Posted August 26, 2016 @droples Your Xcode version? My compilation successful -------------------------- Building process complete! -------------------------- Build info. =========== Package name: Clover_v2.3k_r3724.pkg MD5: 3707cf69f328444142f56926c8edbed9 Version: v2.3k Stage: v2.3k Date/Time: 2016-08-26 00:37:36 Built by: slice Copyright 2012-2016 Link to comment Share on other sites More sharing options...
Philip Petev Posted August 26, 2016 Share Posted August 26, 2016 There's a problem indeed. On first run (no src folder) that script fetches empty edk folders, only directory structure with no files inside. The svn --depth empty option should not be used on first run (and probably at all) . Also, there is another contradiction: if [[ $EUID -eq 0 ]]; then echo echo "This script should not be run using sudo!!" exit 1fi with this: ................ else echo "this one is good:" echo "${good}" echo "..but will not be used.." cp -R "${good}" "${NASM_PREFIX}"/ echo "${good} copied to ${NASM_PREFIX}/!" fi.................. On the first run (no src folder), the script tries to install nasm in /opt/local/bin and fails, because creating/using that path requires root privileges.As I said before, in order to avoid using the sudo command, it's best if all needed tools are downloaded, compiled and installed in $TOOLCHAIN_DIR, which in most cases should be ~/src/local/bin. By forcing the script to use only the nasm, found in ~/src/local/bin, and downloading the proper one, if the one in ~/src/local/bin, many lines of code (almost all NASM-related checks) will also be dropped out of the script. Link to comment Share on other sites More sharing options...
Micky1979 Posted August 26, 2016 Author Share Posted August 26, 2016 philip feel free to find a solution... I cannot now. Link to comment Share on other sites More sharing options...
droples Posted August 26, 2016 Share Posted August 26, 2016 @droples Your Xcode version? My compilation successful -------------------------- Building process complete! -------------------------- Build info. =========== Package name: Clover_v2.3k_r3724.pkg MD5: 3707cf69f328444142f56926c8edbed9 Version: v2.3k Stage: v2.3k Date/Time: 2016-08-26 00:37:36 Built by: slice Copyright 2012-2016 Xcode 7.3.1, or Xcode 8b4 -no difference. The manual compilation no problem. TOOLCHAIN_DIR: /Users/droplets/src/edk2/Clover/../../opt/local NASM_PREFIX: /opt/local/bin/ NASM_VER: 2.12.02 Initializing workspace Loading previous configuration from /Users/droplets/src/edk2/Conf/BuildEnv.sh WORKSPACE: /Users/droplets/src/edk2 EDK_TOOLS_PATH: /Users/droplets/src/edk2/BaseTools CONF_PATH: /Users/droplets/src/edk2/Conf fdisk440/user.o64) was built for newer OSX version (10.11) than being linked (10.5) [LIPO] /Users/droplets/src/edk2/Clover/CloverPackage/sym/utils/fdisk440 ================= Making all in boot1-install ================= [XCODE] boot1-install ================= Making all in partutil ================= [XCODE] partutil ================= Making all in bdmesg ================= [XCODE] bdmesg ================= Making all in clover-genconfig ================= [XCODE] clover-genconfig ---------------------------------- Building Clover Install Package [attachment=194038:3725LogCompFromSourse.txt] 3725LogCompFromSourse.txt 1 Link to comment Share on other sites More sharing options...
Slice Posted August 26, 2016 Share Posted August 26, 2016 This log is good, show please bad log. Link to comment Share on other sites More sharing options...
Micky1979 Posted August 26, 2016 Author Share Posted August 26, 2016 Hi, droples have this: boot6 <---------------------------------------------------- TOOLCHAIN_DIR: /Users/droplets/src/opt/local NASM_PREFIX: /opt/local/bin/ NASM_VER: 2.12.02 Initializing workspace ./edksetup.sh: line 77: /Users/droplets/src/edk2/BaseTools/BuildEnv: No such file or directory the script is bad downloading edk2. Is good reverting/update it to the desired one, but is buggie downloading from scratch. Will be fixed, sorry but yesterday no time to download it entirely. There's a problem indeed. On first run (no src folder) that script fetches empty edk folders, only directory structure with no files inside. The svn --depth empty option should not be used on first run (and probably at all) . Also, there is another contradiction: with this: On the first run (no src folder), the script tries to install nasm in /opt/local/bin and fails, because creating/using that path requires root privileges.As I said before, in order to avoid using the sudo command, it's best if all needed tools are downloaded, compiled and installed in $TOOLCHAIN_DIR, which in most cases should be ~/src/local/bin. By forcing the script to use only the nasm, found in ~/src/local/bin, and downloading the proper one, if the one in ~/src/local/bin, many lines of code (almost all NASM-related checks) will also be dropped out of the script. nasm source require two additional libraries to be downloaded and compiled (for the man page), not sure is the best (maybe exist an argument to skip it?). About the copy operation, can be removed, but if you already have a good one... why not? ..and running "sudo" temporarily is not a problem, after the install process we can call sudo -k et voilà. Only we need to know if the destination path is writable, how to do that in bash? ... anyway we can capture the error "$?" firstly and later call sudo if needed. Hope not all of you now have /opt/local/bin (not exist in OSX), Slice want this... but we are not Slice . Just delete this folder solve the problem and nasm will be inside the src folder. Link to comment Share on other sites More sharing options...
droples Posted August 26, 2016 Share Posted August 26, 2016 This log is good, show please bad log. At the moment, there is a problem Status: gettext-latest.tar.gz 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:01:17 --:--:-- 0curl: (7) Failed to connect to ftp.gnu.org port 80: Operation timed out Therefore, I copied gettext-latest.tar.gz to /src/tools/dowload. Full_logCompile.txt PS I replaced EDK2 and Clover to standard.Then follow the $ cd /Users/droplets/src/edk2/clover $ ./ebuild.sh clean $ cp -R ~/src/edk2/Clover/Patches_for_EDK2/* ~/src/edk2/ $cp ~/src/HFSPlus-64.efi ~/src/edk2/Clover/HFSPlus/X64/HFSPlus.efi Then I run Build_Clover.command (3.2). If you select the first 6, then the compilation succeeds. After that - 5 and 7 are compiled successfully. ARCH.zip 1 Link to comment Share on other sites More sharing options...
Micky1979 Posted August 26, 2016 Author Share Posted August 26, 2016 Created a function to see if a path is writable: IsPathWritable() { local result=1 # file/folder exists? if [ ! -e "${1}" ]; then echo "${1} does not exist!" && return $result; fi if [[ -w "${1}" ]]; then echo "${1} is writable!" result=0 else echo "${1} is not writable!" fi return $result } ..so now I know if I have to invoke sudo: if IsPathWritable "${FILE_OR_DIR}"; then echo writable, go! else echo not writable, use sudo! fi Going to fix edk2 download.. Link to comment Share on other sites More sharing options...
Slice Posted August 26, 2016 Share Posted August 26, 2016 @Micky1979 Script works only with key "-fr" Link to comment Share on other sites More sharing options...
Micky1979 Posted August 26, 2016 Author Share Posted August 26, 2016 You mean this script or ebuild.sh? ...ATM I'm downloading edk2 from scratch Link to comment Share on other sites More sharing options...
Slice Posted August 26, 2016 Share Posted August 26, 2016 I mean ebuild.sh Link to comment Share on other sites More sharing options...
Mork vom Ork Posted August 26, 2016 Share Posted August 26, 2016 With new script 3.2 i will allways get this message: extracting: nasm-2.12.02/man1/rdf2com.1 inflating: nasm-2.12.02/man1/rdfdump.1 inflating: nasm-2.12.02/man1/ndisasm.1 inflating: nasm-2.12.02/man1/nasm.1 inflating: nasm-2.12.02/man1/rdx.1 inflating: nasm-2.12.02/rdf2srec inflating: nasm-2.12.02/rdx inflating: nasm-2.12.02/rdf2com cp: directory /opt/local/bin does not exist logout Saving session... ...copying shared history... ...saving history...truncating history files... ...completed. ===============================================================================Build_Clover script v3.2 <----------------------------------------------------===============================================================================By Micky1979 based on Slice, Zenith432, STLVNUB, JrCs, cecekpawon, cvad, Rehabman, philip_petev <----------------------------------------------------===============================================================================Running from: 10.12 <----------------------------------------------------===============================================================================Xcode 7.3.1Build version 7D1014 <----------------------------------------------------=============================================================================== also not working with XCode 8.0 Build version 8S201h The strange thing is: homefolder/src/opt/local/bin still exists (but is empty). Maybe also this code snippet could be helpfull: =============================================================================== nasm check: <---------------------------------------------------- found nasm v0.98.40 at /Applications/Xcode.app/Contents/Developer/usr/bin found nasm v0.98.40 at /usr/bin nasm found, but is not good to build Clover.. % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 1295k 100 1295k 0 0 501k 0 0:00:02 0:00:02 --:--:-- 501k Archive: 2.12.02.zip i have started from the beginning by deleting the whole "src" folder from homefolder and emptied the trash, so script starts as it runs for the very first time. No change at all for XCode app and must say: script 3.1 was running fine for CLOVER Rev. 3724 (my last build with Mickys script rev. 3.1) I have to say: I am NOT a coder, so i can't give any hints on what to cause this fail - SORRY. Link to comment Share on other sites More sharing options...
Micky1979 Posted August 26, 2016 Author Share Posted August 26, 2016 I mean ebuild.sh ok, will look into it in minutes With new script 3.2 i will allways get this message: extracting: nasm-2.12.02/man1/rdf2com.1 inflating: nasm-2.12.02/man1/rdfdump.1 inflating: nasm-2.12.02/man1/ndisasm.1 inflating: nasm-2.12.02/man1/nasm.1 inflating: nasm-2.12.02/man1/rdx.1 inflating: nasm-2.12.02/rdf2srec inflating: nasm-2.12.02/rdx inflating: nasm-2.12.02/rdf2com cp: directory /opt/local/bin does not exist logout Saving session... ...copying shared history... ...saving history...truncating history files... ...completed. =============================================================================== Build_Clover script v3.2 <---------------------------------------------------- =============================================================================== By Micky1979 based on Slice, Zenith432, STLVNUB, JrCs, cecekpawon, cvad, Rehabman, philip_petev <---------------------------------------------------- =============================================================================== Running from: 10.12 <---------------------------------------------------- =============================================================================== Xcode 7.3.1 Build version 7D1014 <---------------------------------------------------- =============================================================================== also not working with XCode 8.0 Build version 8S201h The strange thing is: homefolder/src/opt/local/bin still exists. Maybe also this code snippet could be helpfull: =============================================================================== nasm check: <---------------------------------------------------- found nasm v0.98.40 at /Applications/Xcode.app/Contents/Developer/usr/bin found nasm v0.98.40 at /usr/bin nasm found, but is not good to build Clover.. % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 1295k 100 1295k 0 0 501k 0 0:00:02 0:00:02 --:--:-- 501k Archive: 2.12.02.zip i have started from the beginning by deleting the whole "src" folder from homefolder and emptied the trash, so script starts as it runs for the very first time. No change at all for XCode app and must say: script 3.1 was running fine for CLOVER Rev. 3724 (my last build with Mickys script rev. 3.1 is fixed in my new script, but as already said "/opt/local/bin" does not exist on osx .. Slice create this path for its own. please wait the new one. Link to comment Share on other sites More sharing options...
Mork vom Ork Posted August 26, 2016 Share Posted August 26, 2016 is fixed in my new script, but as already said "/opt/local/bin" does not exist on osx .. Slice create this path for its own. please wait the new one. whow, ok - than sorry for disturbing conversation between the "pro"s 1 Link to comment Share on other sites More sharing options...
Micky1979 Posted August 26, 2016 Author Share Posted August 26, 2016 whow, ok - than sorry for disturbing conversation between the "pro"s no disturbing Sir (said "please" ) I mean ebuild.sh can't understand, here appear to work well: =============================================================================== Build_Clover script v3.3 test <---------------------------------------------------- =============================================================================== By Micky1979 based on Slice, Zenith432, STLVNUB, JrCs, cecekpawon, cvad, Rehabman, philip_petev <---------------------------------------------------- Please enter your choice: 1) check revision 2) build with ./ebuild.sh -nb 3) build with ./ebuild.sh --module=rEFIt_UEFI/refit.inf 4) build all (boot3, 6 and 7) 5) build all with FORCEREBUILD (boot3, 6 and 7) 6) build pkg 7) build iso 8) build pkg+iso #? 4 =============================================================================== boot6 <---------------------------------------------------- TOOLCHAIN_DIR: /Users/Micky1979/src/edk2/Clover/../../opt/local NASM_PREFIX: /Users/Micky1979/src/edk2/Clover/../../opt/local/bin/ NASM_VER: 2.12.02 Initializing workspace Loading previous configuration from /Users/Micky1979/src/edk2/Conf/BuildEnv.sh WORKSPACE: /Users/Micky1979/src/edk2 EDK_TOOLS_PATH: /Users/Micky1979/src/edk2/BaseTools CONF_PATH: /Users/Micky1979/src/edk2/Conf Running edk2 build for CloverX64 using the command: build --skip-autogen -D NO_GRUB_DRIVERS_EMBEDDED -D CHECK_FLAGS -D USE_LOW_EBDA -p Clover/Clover.dsc -a X64 -b RELEASE -t XCODE5 -n 5 Build environment: Darwin-15.6.0-x86_64-i386-64bit Build start time: 20:36:56, Aug.26 2016 WORKSPACE = /Users/Micky1979/src/edk2 ECP_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EDK_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EFI_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EDK_TOOLS_PATH = /Users/Micky1979/src/edk2/BaseTools Architecture(s) = X64 Build target = RELEASE Toolchain = XCODE5 Active Platform = /Users/Micky1979/src/edk2/Clover/Clover.dsc Flash Image Definition = /Users/Micky1979/src/edk2/Clover/Clover.fdf Processing meta-data ... done! Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseLib/BaseLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePrintLib/BasePrintLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxDxeIpl/DxeIpl.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiLib/UefiLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/VBoxPeCoffLib/VBoxPeCoffLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/DuetTimerLib/DuetTimerLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeServicesLib/DxeServicesLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeHobLib/DxeHobLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxePcdLib/DxePcdLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/GenericBdsLib/GenericBdsLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/OsxBdsPlatformLib/PlatformBds.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/Library/BaseIoApicLib/BaseIoApicLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/MemLogLibDefault/MemLogLibDefault.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/VideoBiosPatchLib/VideoBiosPatchLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiUsbLib/UefiUsbLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/ShellPkg/Library/UefiShellLib/UefiShellLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiMemoryLib/UefiMemoryLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/OpensslLib/OpensslLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseCpuLib/BaseCpuLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxDxeCore/DxeMain.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/PCD/Dxe/Pcd.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GraphicsConsoleDxe/GraphicsConsoleDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/DuetPkg/SmbiosGenDxe/SmbiosGen.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxEfiLdr/EfiLdr.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxBdsDxe/BdsDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/EbcDxe/EbcDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/CpuDxe/Cpu.inf [X64] Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/AcpiReset/Reset.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Metronome/Metronome.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/8254TimerDxe/8254Timer.inf [X64] Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/HpetTimerDxe/HpetTimerDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/PciRootBridgeDxe/PciRootBridge.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxPciBusNoEnumerationDxe/PciBusNoEnumeration.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/DriverOverride/DriverOverride.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxHfs.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxIso9660.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxExt2.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxExt4.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxReiserFS.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/FatPkg/EnhancedFatDxe/Fat.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/EXFAT.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/HFSPLUS.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/ISO9660.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/NTFS.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/UDF.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Pci/VgaMiniPortDxe/VgaMiniPortDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/BiosVideo/BiosVideo.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/LegacyBios/VideoDxe/VideoDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/SataControllerDxe/SataControllerDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/AtaAtapi/AtaAtapiPassThru.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/AtaBus/AtaBusDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/DVDBus/ScsiBusDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/DVDDisk/ScsiDiskDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OhciDxe/OhciDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Patches_for_EDK2/XhciDxe/XhciDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Patches_for_EDK2/UsbBusDxe/UsbBusDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouseDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf [X64] Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/Ps2MouseAbsolutePointerDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/Ps2MouseDxe/Ps2MouseDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxAcpiTableDxe/AcpiTableDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxAcpiPlatformDxe/AcpiPlatformDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/PartitionDxe/PartitionDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/BiosKeyboard/KeyboardDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/LegacyBios/Region2Dxe/LegacyRegion2Dxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/FSInject/FSInject.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/MsgLog/MsgLog.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/DumpUefiCalls/DumpUefiCalls.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxFatBinaryDrv/OsxFatBinaryDrv.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/EmuVariableUefi/EmuVariableRuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/AppleImageCodec/AppleImageCodec.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/bdmesg_efi/bdmesg.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/rEFIt_UEFI/refit.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/OsxAptioFixDrv/OsxAptioFixDrv.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxAptioFixDrv/OsxAptioFix2Drv.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/OsxLowMemFixDrv/OsxLowMemFixDrv.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Generating DUETEFIMAINFVX64 FV ######################################## ######################################## ######################################## ################## GUID cross reference file can be found at /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/FV/Guid.xref FV Space Information DUETEFIMAINFVX64 [34%Full] 2752512 total, 942832 used, 1809680 free - Done - Build end time: 20:37:08, Aug.26 2016 Build total time: 00:00:12 Compressing DUETEFIMainFv.FV ... Encoding Compressing DxeCore.efi ... Encoding Compressing DxeIpl.efi ... Encoding Generate Loader Image ... Created /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/FV/Efildr64 879+0 records in 879+0 records out 450048 bytes transferred in 0.003001 secs (149967278 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.000018 secs (55924 bytes/sec) -> BOOTX64.efi -> CLOVERX64.efi Copy Mandatory drivers: -> FSInject-64.efi -> FSInject-64.efi -> OsxFatBinaryDrv-64.efi -> VBoxHfs-64.efi Copy Optional drivers: -> NvmExpressDxe-64.efi -> Ps2MouseDxe-64.efi -> UsbMouseDxe-64.efi -> VBoxExt2-64.efi -> VBoxExt4-64.efi -> VBoxIso9600-64.efi -> XhciDxe-64.efi -> GrubEXFAT-64.efi -> GrubISO9660-64.efi -> GrubNTFS-64.efi -> GrubUDF-64.efi -> CsmVideoDxe-64.efi -> DataHubDxe-64.efi -> EmuVariableUefi-64.efi -> OsxAptioFix2Drv-64.efi -> OsxAptioFixDrv-64.efi -> OsxLowMemFixDrv-64.efi -> PartitionDxe-64.efi Copy Applications: -> bdmesg.efi Done! Generating BootSectors make: Nothing to be done for `all'. Done! =============================================================================== boot7 <---------------------------------------------------- TOOLCHAIN_DIR: /Users/Micky1979/src/edk2/Clover/../../opt/local NASM_PREFIX: /Users/Micky1979/src/edk2/Clover/../../opt/local/bin/ NASM_VER: 2.12.02 Initializing workspace Loading previous configuration from /Users/Micky1979/src/edk2/Conf/BuildEnv.sh WORKSPACE: /Users/Micky1979/src/edk2 EDK_TOOLS_PATH: /Users/Micky1979/src/edk2/BaseTools CONF_PATH: /Users/Micky1979/src/edk2/Conf Running edk2 build for CloverX64 using the command: build --skip-autogen -D DISABLE_USB_SUPPORT -D NO_GRUB_DRIVERS_EMBEDDED -D CHECK_FLAGS -D USE_BIOS_BLOCKIO -D USE_LOW_EBDA -p Clover/Clover.dsc -a X64 -b RELEASE -t XCODE5 -n 5 Build environment: Darwin-15.6.0-x86_64-i386-64bit Build start time: 20:37:09, Aug.26 2016 WORKSPACE = /Users/Micky1979/src/edk2 ECP_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EDK_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EFI_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EDK_TOOLS_PATH = /Users/Micky1979/src/edk2/BaseTools Architecture(s) = X64 Build target = RELEASE Toolchain = XCODE5 Active Platform = /Users/Micky1979/src/edk2/Clover/Clover.dsc Flash Image Definition = /Users/Micky1979/src/edk2/Clover/Clover.fdf Processing meta-data ... done! Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseLib/BaseLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePrintLib/BasePrintLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxDxeIpl/DxeIpl.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiLib/UefiLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/Library/VBoxPeCoffLib/VBoxPeCoffLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/DuetTimerLib/DuetTimerLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeServicesLib/DxeServicesLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeHobLib/DxeHobLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxePcdLib/DxePcdLib.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/GenericBdsLib/GenericBdsLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/OsxBdsPlatformLib/PlatformBds.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf [X64] Building ... /Users/Micky1979/src/edk2/UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/Library/BaseIoApicLib/BaseIoApicLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/MemLogLibDefault/MemLogLibDefault.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/VideoBiosPatchLib/VideoBiosPatchLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiUsbLib/UefiUsbLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/ShellPkg/Library/UefiShellLib/UefiShellLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiMemoryLib/UefiMemoryLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/OpensslLib/OpensslLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseCpuLib/BaseCpuLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxDxeCore/DxeMain.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/PCD/Dxe/Pcd.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GraphicsConsoleDxe/GraphicsConsoleDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/DuetPkg/SmbiosGenDxe/SmbiosGen.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxEfiLdr/EfiLdr.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxBdsDxe/BdsDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/EbcDxe/EbcDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/CpuDxe/Cpu.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/AcpiReset/Reset.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Metronome/Metronome.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/8254TimerDxe/8254Timer.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/HpetTimerDxe/HpetTimerDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/PciRootBridgeDxe/PciRootBridge.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/OsxPciBusNoEnumerationDxe/PciBusNoEnumeration.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/DriverOverride/DriverOverride.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxHfs.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxIso9660.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxExt2.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxExt4.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxReiserFS.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/FatPkg/EnhancedFatDxe/Fat.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/EXFAT.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/HFSPLUS.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/ISO9660.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/NTFS.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/UDF.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Pci/VgaMiniPortDxe/VgaMiniPortDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/BiosVideo/BiosVideo.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/LegacyBios/VideoDxe/VideoDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/LegacyBios/BlockIoDxe/BlockIoDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OhciDxe/OhciDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/Patches_for_EDK2/XhciDxe/XhciDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Patches_for_EDK2/UsbBusDxe/UsbBusDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouseDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf [X64] Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/Ps2MouseAbsolutePointerDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Ps2MouseDxe/Ps2MouseDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxAcpiTableDxe/AcpiTableDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/OsxAcpiPlatformDxe/AcpiPlatformDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/PartitionDxe/PartitionDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/BiosKeyboard/KeyboardDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/LegacyBios/Region2Dxe/LegacyRegion2Dxe.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/FSInject/FSInject.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/MsgLog/MsgLog.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/DumpUefiCalls/DumpUefiCalls.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxFatBinaryDrv/OsxFatBinaryDrv.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/EmuVariableUefi/EmuVariableRuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/AppleImageCodec/AppleImageCodec.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/bdmesg_efi/bdmesg.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/rEFIt_UEFI/refit.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/OsxAptioFixDrv/OsxAptioFixDrv.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxAptioFixDrv/OsxAptioFix2Drv.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/OsxLowMemFixDrv/OsxLowMemFixDrv.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Generating DUETEFIMAINFVX64 FV ####### GUID cross reference file can be found at /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/FV/Guid.xref FV Space Information DUETEFIMAINFVX64 [29%Full] 2752512 total, 803768 used, 1948744 free - Done - Build end time: 20:37:19, Aug.26 2016 Build total time: 00:00:09 Compressing DUETEFIMainFv.FV ... Encoding Compressing DxeCore.efi ... Encoding Compressing DxeIpl.efi ... Encoding Generate Loader Image ... Created /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/FV/Efildr64 879+0 records in 879+0 records out 450048 bytes transferred in 0.003189 secs (141121271 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.000019 secs (52429 bytes/sec) -> BOOTX64.efi -> CLOVERX64.efi Copy Mandatory drivers: -> FSInject-64.efi -> FSInject-64.efi -> OsxFatBinaryDrv-64.efi -> VBoxHfs-64.efi Copy Optional drivers: -> NvmExpressDxe-64.efi -> Ps2MouseDxe-64.efi -> UsbMouseDxe-64.efi -> VBoxExt2-64.efi -> VBoxExt4-64.efi -> VBoxIso9600-64.efi -> XhciDxe-64.efi -> GrubEXFAT-64.efi -> GrubISO9660-64.efi -> GrubNTFS-64.efi -> GrubUDF-64.efi -> CsmVideoDxe-64.efi -> DataHubDxe-64.efi -> EmuVariableUefi-64.efi -> OsxAptioFix2Drv-64.efi -> OsxAptioFixDrv-64.efi -> OsxLowMemFixDrv-64.efi -> PartitionDxe-64.efi Copy Applications: -> bdmesg.efi Done! Generating BootSectors make: Nothing to be done for `all'. Done! =============================================================================== boot3 <---------------------------------------------------- TOOLCHAIN_DIR: /Users/Micky1979/src/edk2/Clover/../../opt/local NASM_PREFIX: /Users/Micky1979/src/edk2/Clover/../../opt/local/bin/ NASM_VER: 2.12.02 Initializing workspace Loading previous configuration from /Users/Micky1979/src/edk2/Conf/BuildEnv.sh WORKSPACE: /Users/Micky1979/src/edk2 EDK_TOOLS_PATH: /Users/Micky1979/src/edk2/BaseTools CONF_PATH: /Users/Micky1979/src/edk2/Conf Running edk2 build for CloverIA32 using the command: build --skip-autogen -D NO_GRUB_DRIVERS_EMBEDDED -D CHECK_FLAGS -D USE_LOW_EBDA -p Clover/Clover.dsc -a IA32 -b RELEASE -t XCODE5 -n 5 Build environment: Darwin-15.6.0-x86_64-i386-64bit Build start time: 20:37:21, Aug.26 2016 WORKSPACE = /Users/Micky1979/src/edk2 ECP_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EDK_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EFI_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EDK_TOOLS_PATH = /Users/Micky1979/src/edk2/BaseTools Architecture(s) = IA32 Build target = RELEASE Toolchain = XCODE5 Active Platform = /Users/Micky1979/src/edk2/Clover/Clover.dsc Flash Image Definition = /Users/Micky1979/src/edk2/Clover/Clover.fdf Processing meta-data ... done! Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseLib/BaseLib.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePrintLib/BasePrintLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxDxeIpl/DxeIpl.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiLib/UefiLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf [IA32] Building ... /Users/Micky1979/src/edk2/Clover/Library/VBoxPeCoffLib/VBoxPeCoffLib.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf [IA32] Building ... /Users/Micky1979/src/edk2/Clover/Library/DuetTimerLib/DuetTimerLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeServicesLib/DxeServicesLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeHobLib/DxeHobLib.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxePcdLib/DxePcdLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/GenericBdsLib/GenericBdsLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/OsxBdsPlatformLib/PlatformBds.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.inf [IA32] Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/Library/BaseIoApicLib/BaseIoApicLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/MemLogLibDefault/MemLogLibDefault.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/VideoBiosPatchLib/VideoBiosPatchLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiUsbLib/UefiUsbLib.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/ShellPkg/Library/UefiShellLib/UefiShellLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiMemoryLib/UefiMemoryLib.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/OpensslLib/OpensslLibNull.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxDxeCore/DxeMain.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/PCD/Dxe/Pcd.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf [IA32] Building ... /Users/Micky1979/src/edk2/Clover/GraphicsConsoleDxe/GraphicsConsoleDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/DuetPkg/SmbiosGenDxe/SmbiosGen.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxEfiLdr/EfiLdr.inf [IA32] Building ... /Users/Micky1979/src/edk2/Clover/OsxBdsDxe/BdsDxe.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/EbcDxe/EbcDxe.inf [IA32] Building ... /Users/Micky1979/src/edk2/Clover/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/CpuDxe/Cpu.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/AcpiReset/Reset.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Metronome/Metronome.inf [IA32] Building ... /Users/Micky1979/src/edk2/Clover/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/8254TimerDxe/8254Timer.inf [IA32] Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/HpetTimerDxe/HpetTimerDxe.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/PciRootBridgeDxe/PciRootBridge.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxPciBusNoEnumerationDxe/PciBusNoEnumeration.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/DriverOverride/DriverOverride.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxHfs.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxIso9660.inf [IA32] Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxExt2.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxExt4.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxReiserFS.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/FatPkg/EnhancedFatDxe/Fat.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/EXFAT.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/HFSPLUS.inf [IA32] Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/ISO9660.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/NTFS.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/UDF.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Pci/VgaMiniPortDxe/VgaMiniPortDxe.inf [IA32] Building ... /Users/Micky1979/src/edk2/Clover/BiosVideo/BiosVideo.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/LegacyBios/VideoDxe/VideoDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/SataControllerDxe/SataControllerDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/AtaAtapi/AtaAtapiPassThru.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/AtaBus/AtaBusDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/DVDBus/ScsiBusDxe.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/DVDDisk/ScsiDiskDxe.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OhciDxe/OhciDxe.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Patches_for_EDK2/XhciDxe/XhciDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Patches_for_EDK2/UsbBusDxe/UsbBusDxe.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouseDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/Ps2MouseAbsolutePointerDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Ps2MouseDxe/Ps2MouseDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxAcpiTableDxe/AcpiTableDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxAcpiPlatformDxe/AcpiPlatformDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/PartitionDxe/PartitionDxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/BiosKeyboard/KeyboardDxe.inf [IA32] Building ... /Users/Micky1979/src/edk2/Clover/LegacyBios/Region2Dxe/LegacyRegion2Dxe.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/FSInject/FSInject.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/MsgLog/MsgLog.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/DumpUefiCalls/DumpUefiCalls.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxFatBinaryDrv/OsxFatBinaryDrv.inf [IA32] Building ... /Users/Micky1979/src/edk2/Clover/EmuVariableUefi/EmuVariableRuntimeDxe.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/AppleImageCodec/AppleImageCodec.inf [IA32] Building ... /Users/Micky1979/src/edk2/Clover/bdmesg_efi/bdmesg.inf [IA32] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/rEFIt_UEFI/refit.inf [IA32] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Generating DUETEFIMAINFVIA32 FV ######################################## ######################################## ######################################## ################## GUID cross reference file can be found at /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/FV/Guid.xref FV Space Information DUETEFIMAINFVIA32 [30%Full] 2752512 total, 843144 used, 1909368 free - Done - Build end time: 20:37:32, Aug.26 2016 Build total time: 00:00:11 Compressing DUETEFIMainFv.FV ... Encoding Compressing DxeCore.efi ... Encoding Compressing DxeIpl.efi ... Encoding Generate Loader Image ... Created /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/FV/Efildr32 -> boot3 Changing byte at 0xa9 of boot3 to show 3 as init message: 1+0 records in 1+0 records out 1 bytes transferred in 0.000018 secs (55188 bytes/sec) -> BOOTIA32.efi -> CLOVERIA32.efi Copy Mandatory drivers: -> FSInject-32.efi -> FSInject-32.efi -> OsxFatBinaryDrv-32.efi -> VBoxHfs-32.efi Copy Optional drivers: -> VBoxIso9600-32.efi -> VBoxExt2-32.efi -> VBoxExt4-32.efi -> GrubEXFAT-32.efi -> GrubISO9660-32.efi -> GrubNTFS-32.efi -> GrubUDF-32.efi -> Ps2KeyboardDxe-32.efi -> Ps2MouseAbsolutePointerDxe-32.efi -> Ps2MouseDxe-32.efi -> UsbMouseDxe-32.efi -> XhciDxe-32.efi Copy Applications: -> bdmesg-32.efi Done! Generating BootSectors make: Nothing to be done for `all'. Done! ..try now deliting ebuild.sh and redownload it again.. Second test: Updating '.': Restored 'ebuild.sh' U rEFIt_UEFI/refit/menu.c Updated to revision 3726. updated from r3725 to 3726, ebuild.sh restored, menu.c updated: Last login: Fri Aug 26 20:36:44 on ttys000 Micky1979s-MBP:~ Micky1979$ /Users/Micky1979/Desktop/SliceNasm/Build_Clover.command ; exit; =============================================================================== Build_Clover script v3.3 test <---------------------------------------------------- =============================================================================== By Micky1979 based on Slice, Zenith432, STLVNUB, JrCs, cecekpawon, cvad, Rehabman, philip_petev <---------------------------------------------------- Please enter your choice: 1) check revision 2) update Clover only (no building) 3) update & build Clover 4) run my script on the source 5) build existing revision (no update, standard build) 6) build existing revision with FORCEREBUILD (no update, standard build) 7) build existing revision with custom macros enabled 8) info and limitations about this script #? 2 =============================================================================== Running from: 10.11.6 <---------------------------------------------------- =============================================================================== Xcode 7.3.1 Build version 7D1014 <---------------------------------------------------- =============================================================================== Updating edk2 <---------------------------------------------------- D edksetup.sh Checked out revision 22435. edksetup.sh: Updating 'edksetup.sh': A edksetup.sh Updated to revision 22435. BaseTools: Updating '.': Fetching external item into 'Bin/Win32': External at revision 184. At revision 22435. MdePkg: Updating '.': At revision 22435. DuetPkg: Updating '.': At revision 22435. EdkCompatibilityPkg: Updating '.': At revision 22435. IntelFrameworkModulePkg: Updating '.': At revision 22435. IntelFrameworkPkg: Updating '.': At revision 22435. MdeModulePkg: Updating '.': At revision 22435. OvmfPkg: Updating '.': At revision 22435. PcAtChipsetPkg: Updating '.': At revision 22435. ShellPkg: Updating '.': At revision 22435. UefiCpuPkg: Updating '.': At revision 22435. BaseTools before update was: r22435 now is: r22435 =============================================================================== Updating Clover <---------------------------------------------------- Updating '.': Restored 'ebuild.sh' U rEFIt_UEFI/refit/menu.c Updated to revision 3726. =============================================================================== Apply Edk2 patches <---------------------------------------------------- Please enter your choice: 1) check revision 2) update Clover only (no building) 3) update & build Clover 4) run my script on the source 5) build existing revision (no update, standard build) 6) build existing revision with FORCEREBUILD (no update, standard build) 7) build existing revision with custom macros enabled 8) info and limitations about this script #? 5 =============================================================================== Select the desired architecture <---------------------------------------------------- 1) Standard with both ia32 and x64 2) x64 only 3) ia32 only 1 =============================================================================== Running from: 10.11.6 <---------------------------------------------------- =============================================================================== Xcode 7.3.1 Build version 7D1014 <---------------------------------------------------- =============================================================================== BUILDTOOL is XCODE5 <---------------------------------------------------- =============================================================================== nasm check: <---------------------------------------------------- NASM version 2.12.02 compiled on Jul 6 2016 =============================================================================== gettext check: <---------------------------------------------------- found gettext at /Users/Micky1979/src/opt/local/bin =============================================================================== boot6 <---------------------------------------------------- TOOLCHAIN_DIR: /Users/Micky1979/src/opt/local NASM_PREFIX: /Users/Micky1979/src/opt/local/bin/ NASM_VER: 2.12.02 Initializing workspace Loading previous configuration from /Users/Micky1979/src/edk2/Conf/BuildEnv.sh WORKSPACE: /Users/Micky1979/src/edk2 EDK_TOOLS_PATH: /Users/Micky1979/src/edk2/BaseTools CONF_PATH: /Users/Micky1979/src/edk2/Conf Running edk2 build for CloverX64 using the command: build -D NO_GRUB_DRIVERS_EMBEDDED -D CHECK_FLAGS -D USE_LOW_EBDA -p Clover/Clover.dsc -a X64 -b RELEASE -t XCODE5 -n 5 Build environment: Darwin-15.6.0-x86_64-i386-64bit Build start time: 20:43:10, Aug.26 2016 WORKSPACE = /Users/Micky1979/src/edk2 ECP_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EDK_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EFI_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EDK_TOOLS_PATH = /Users/Micky1979/src/edk2/BaseTools Architecture(s) = X64 Build target = RELEASE Toolchain = XCODE5 Active Platform = /Users/Micky1979/src/edk2/Clover/Clover.dsc Flash Image Definition = /Users/Micky1979/src/edk2/Clover/Clover.fdf Processing meta-data ........ done! Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseLib/BaseLib.inf [X64] [CC] PcdLib [CC] DebugLib [SLINK] BasePcdLibNull [CC] SetMem [SLINK] BaseDebugLibNull [CC] ScanMem64Wrapper Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePrintLib/BasePrintLib.inf [X64] [CC] ScanMem32Wrapper Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf [X64] [CC] ScanMem16Wrapper [CC] CheckSum [CC] ScanMem8Wrapper [CC] SwitchStack [CC] ZeroMemWrapper Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf [X64] [CC] CompareMemWrapper [CC] SwapBytes64 [CC] SetMem64Wrapper [CC] SwapBytes32 [CC] SetMem32Wrapper [CC] BaseReportStatusCodeLib [CC] SwapBytes16 [SLINK] BaseReportStatusCodeLibNull [CC] IoLibMmioBuffer Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf [X64] [CC] SetMem16Wrapper [CC] LongJump [CC] SetMemWrapper [CC] SetJump [CC] CopyMemWrapper [CC] IoHighLevel [CC] RShiftU64 [CC] IoLibGcc [CC] RRotU64 [CC] MemLibGeneric [CC] MemoryAllocationLib [CC] RRotU32 [CC] IoLib [CC] MemLibGuid [SLINK] BaseIoLibIntrinsic Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf [X64] [CC] MultU64x64 [CC] CopyMem [CC] DxeCoreMemoryProfileLibNull [CC] MultU64x32 [SLINK] BaseMemoryLib [SLINK] DxeCoreMemoryAllocationLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf [X64] [CC] MultS64x64 Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf [X64] [CC] PrintLibInternal [CC] DxeCoreEntryPoint [SLINK] DxeCoreEntryPoint Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf [X64] [CC] ModU64x32 [CC] PrintLib [SLINK] BasePrintLib [CC] LShiftU64 [CC] UefiRuntimeServicesTableLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf [X64] [SLINK] UefiRuntimeServicesTableLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf [X64] [CC] LRotU64 [CC] UefiBootServicesTableLib [CC] PeCoffExtraActionLib [CC] LRotU32 [SLINK] PeCoffExtraActionLibNull [SLINK] UefiBootServicesTableLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiLib/UefiLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf [X64] [CC] DevicePathUtilities [CC] LowBitSet64 [CC] LowBitSet32 [CC] X86Cache [CC] HighBitSet64 [SLINK] BaseCacheMaintenanceLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf [X64] [CC] HobLib [SLINK] DxeCoreHobLib [CC] HighBitSet32 Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf [X64] [CC] UefiLibPrint [CC] GetPowerOfTwo64 [CC] PerformanceLib [SLINK] BasePerformanceLibNull Building ... /Users/Micky1979/src/edk2/Clover/Library/VBoxPeCoffLib/VBoxPeCoffLib.inf [X64] [CC] GetPowerOfTwo32 [CC] DivU64x64Remainder [CC] UefiNotTiano [CC] BaseUefiDecompressLib [CC] DivU64x32Remainder [SLINK] BaseUefiDecompressLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf [X64] [CC] DivU64x32 [CC] UefiDriverModel [CC] DivS64x64Remainder [CC] PeCoffGetEntryPoint [CC] ARShiftU64 [SLINK] BasePeCoffGetEntryPointLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf [X64] [CC] DevicePathToText [CC] BitField [CC] Console [CC] CpuDeadLoop [CC] BasePeCoff [CC] PeCoffLoaderEx [CC] Cpu [SLINK] VBoxPeCoffLib Building ... /Users/Micky1979/src/edk2/Clover/Library/DuetTimerLib/DuetTimerLib.inf [X64] [CC] DxeExtractGuidedSectionLib [CC] LinkedList [SLINK] DxeExtractGuidedSectionLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeServicesLib/DxeServicesLib.inf [X64] [CC] X86TimerLib [SLINK] DuetTimerLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf [X64] [CC] UefiLib [SLINK] UefiLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf [X64] [CC] SafeString [CC] DebugAgentLibNull [CC] DxeServicesLib [SLINK] DebugAgentLibNull Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf [X64] [SLINK] DxeServicesLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeHobLib/DxeHobLib.inf [X64] [CC] CpuExceptionHandlerLibNull [SLINK] CpuExceptionHandlerLibNull Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf [X64] [CC] MemoryAllocationLib [SLINK] UefiMemoryAllocationLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf [X64] [CC] HobLib [CC] String [SLINK] DxeHobLib [CC] DriverEntryPoint Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf [X64] [SLINK] UefiDriverEntryPoint [CC] FilePaths Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf [X64] [CC] RuntimeLib [CC] InternalGetSpinLockProperties [SLINK] UefiRuntimeLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf [X64] [CC] GccInline [CC] VarCheckLib [SLINK] VarCheckLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf [X64] [CC] SynchronizationGcc [SLINK] BaseSynchronizationLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf [X64] [CC] DxeServicesTableLib [SLINK] DxeServicesTableLib /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/Thunk16.iii:300: warning: absolute address can not be RIP-relative Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf [X64] [NASM] Thunk16 [CC] TpmMeasurementLibNull [CC] Non-existing [SLINK] TpmMeasurementLibNull Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf [X64] [CC] AuthVariableLibNull [SLINK] AuthVariableLibNull [CC] Math64 Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf [X64] [CC] Unaligned [CC] DxeCapsuleLibNull [SLINK] DxeCapsuleLibNull Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxePcdLib/DxePcdLib.inf [X64] [CC] X86WriteIdtr [CC] DevicePathFromText [CC] DxeSecurityManagementLib [CC] X86WriteGdtr [SLINK] DxeSecurityManagementLib Building ... /Users/Micky1979/src/edk2/Clover/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf [X64] [CC] UefiDevicePathLib [CC] VarCheckUefiLibNullClass [CC] X86Thunk [SLINK] VarCheckUefiLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf [X64] [SLINK] UefiDevicePathLib [CC] X86ReadIdtr Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf [X64] [CC] UefiHiiServicesLib [SLINK] UefiHiiServicesLib [CC] X86ReadGdtr Building ... /Users/Micky1979/src/edk2/Clover/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf [X64] [CC] X86Msr [CC] X86GetInterruptState [CC] DxePcdLib [SLINK] DxePcdLib Building ... /Users/Micky1979/src/edk2/Clover/Library/GenericBdsLib/GenericBdsLib.inf [X64] [CC] LzmaDecompress [CC] X86FxSave [CC] X86FxRestore [CC] X86EnablePaging64 [CC] CustomizedDisplayLib [CC] X86EnablePaging32 [CC] DevicePath [CC] X86DisablePaging64 [CC] X86DisablePaging32 [CC] GccInline [CC] CustomizedDisplayLibInternal [CC] Performance [CC] LzFind [CC] AutoGen [SLINK] CustomizedDisplayLib Building ... /Users/Micky1979/src/edk2/Clover/Library/OsxBdsPlatformLib/PlatformBds.inf [X64] [ASM] SwitchStack [CC] HiiLib [CC] BdsConnect [CC] HiiString [CC] BdsPlatform [ASM] SetJump [CC] HiiLanguage [SLINK] UefiHiiLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf [X64] [CC] PlatformData [SLINK] DuetBds Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf [X64] [CC] PciCf8Lib [SLINK] BasePciCf8Lib Building ... /Users/Micky1979/src/edk2/UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.inf [X64] [CC] LzmaDec [ASM] LongJump [CC] PciLib [CC] GuidedSectionExtraction [SLINK] BasePciLibCf8 Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/Library/BaseIoApicLib/BaseIoApicLib.inf [X64] [SLINK] LzmaDecompressLib Building ... /Users/Micky1979/src/edk2/Clover/Library/MemLogLibDefault/MemLogLibDefault.inf [X64] [CC] BdsMisc [CC] IoApicLib [SLINK] BaseIoApicLib Building ... /Users/Micky1979/src/edk2/Clover/Library/VideoBiosPatchLib/VideoBiosPatchLib.inf [X64] [CC] BaseXApicLib [SLINK] BaseXApicLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf [X64] [CC] MemLogLib [SLINK] MemLogLibDefault Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiUsbLib/UefiUsbLib.inf [X64] [CC] VideoBiosPatchLib [ASM] EnableDisableInterrupts [CC] Hid [CC] UefiScsiLib [SLINK] UefiScsiLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf [X64] [CC] UsbDxeLib [CC] 915resolution [SLINK] UefiUsbLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf [X64] [ASM] DisablePaging64 [CC] UefiSortLib [SLINK] UefiSortLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf [X64] [CC] edid [SLINK] VideoBiosPatchLib Building ... /Users/Micky1979/src/edk2/ShellPkg/Library/UefiShellLib/UefiShellLib.inf [X64] [CC] BdsConsole [CC] ApplicationEntryPoint [CC] UefiFileHandleLib [SLINK] UefiApplicationEntryPoint Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiMemoryLib/UefiMemoryLib.inf [X64] [SLINK] UefiFileHandleLib Building ... /Users/Micky1979/src/edk2/Clover/Library/OpensslLib/OpensslLibNull.inf [X64] [ASM] CpuId [CC] ScanMem64Wrapper [CC] OpensslLibNull warning: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning for library: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/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/Micky1979/src/edk2/MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf [X64] [CC] ScanMem32Wrapper [ASM] CpuIdEx [CC] ScanMem16Wrapper [CC] ScanMem8Wrapper [CC] ZeroMemWrapper [ASM] EnableCache [CC] UefiShellLib [CC] CompareMemWrapper [SLINK] UefiShellLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseCpuLib/BaseCpuLib.inf [X64] [CC] SetMem64Wrapper [CC] DxeNetLib [CC] SetMem32Wrapper [ASM] DisableCache [CC] SetMem16Wrapper [ASM] CpuSleep [CC] SetMemWrapper [CC] CopyMemWrapper [ASM] RdRand [CC] ChkStkGcc [ASM] CpuFlushTlb [CC] MemLibGeneric [CC] NetBuffer [SLINK] BaseCpuLib /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/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/LongJump.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/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/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/SetJump.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/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/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/SwitchStack.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/MdePkg/Library/BaseLib/BaseLib/OUTPUT/X64/SwitchStack.obj (due to use of basename, truncation, blank padding or duplicate input files) [SLINK] BaseLib [SLINK] DxeNetLib Building ... /Users/Micky1979/src/edk2/Clover/OsxDxeIpl/DxeIpl.inf [X64] [CC] MemLibGuid Building ... /Users/Micky1979/src/edk2/Clover/OsxDxeCore/DxeMain.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/PCD/Dxe/Pcd.inf [X64] [CC] MemLib [SLINK] UefiMemoryLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf [X64] [CC] DxeInit [CC] WatchdogTimer [CC] Pcd [CC] AutoGen [SLINK] WatchdogTimer [CC] CoreSectionExtraction [CC] BdsBoot [CC] LegacyTable [CC] String [DLINK1] WatchdogTimer [CC] HobGeneration [MTOC] WatchdogTimer [CC] AutoGen [SLINK] GenericBdsLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf [X64] [GENFW] WatchdogTimer Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf [X64] [CC] Service [CC] Debug [CC] Crc32 [CC] AutoGen [CC] Image [CC] MonotonicCounter [SLINK] PcdDxe [CC] EnterDxeCore [CC] AutoGen [CC] Runtime [SLINK] MonotonicCounterRuntimeDxe [CC] DebugImageInfo [CC] AutoGen [SLINK] RuntimeDxe [CC] Paging [CC] Stall [DLINK1] MonotonicCounterRuntimeDxe [CC] AutoGen [MTOC] MonotonicCounterRuntimeDxe [SLINK] DxeIpl [GENFW] MonotonicCounterRuntimeDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf [X64] [CC] SetWatchdogTimer [CC] InitVariable [CC] InstallConfigurationTable [DLINK1] DxeIpl [MTOC] DxeIpl [GENFW] DxeIpl Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf [X64] [CC] Library [DLINK1] RuntimeDxe [MTOC] RuntimeDxe [CC] EmuVariable [GENFW] RuntimeDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf [X64] [CC] AutoGen [SLINK] EmuVariableRuntimeDxe [CC] FtwMisc [CC] Reclaim [CC] DriverSupport [CC] UpdateWorkingBlock [CC] Notify [DLINK1] PcdDxe [MTOC] PcdDxe [CC] FaultTolerantWrite [GENFW] PcdDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf [X64] [CC] Locate [CC] FaultTolerantWriteDxe [CC] CapsuleService [CC] AutoGen [SLINK] FaultTolerantWriteDxe [CC] SaveLongModeContext [CC] Handle [CC] AutoGen [SLINK] CapsuleRuntimeDxe [DLINK1] EmuVariableRuntimeDxe [MTOC] EmuVariableRuntimeDxe [CC] Variable [GENFW] EmuVariableRuntimeDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf [X64] [CC] VariableDxe [DLINK1] FaultTolerantWriteDxe [MTOC] FaultTolerantWriteDxe [CC] NullMemoryTest [GENFW] FaultTolerantWriteDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf [X64] [CC] Gcd [CC] Measurement [CC] AutoGen [SLINK] NullMemoryTestDxe [CC] SecurityStub [CC] TcgMorLockDxe [DLINK1] CapsuleRuntimeDxe [MTOC] CapsuleRuntimeDxe [CC] AutoGen [SLINK] SecurityStubDxe [CC] VarCheck [GENFW] CapsuleRuntimeDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf [X64] [CC] Pool [CC] VariableExLib [CC] ComponentName [CC] AutoGen [SLINK] VariableRuntimeDxe [CC] ConPlatform [DLINK1] NullMemoryTestDxe [MTOC] NullMemoryTestDxe [GENFW] NullMemoryTestDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf [X64] [CC] AutoGen [CC] Page [SLINK] ConPlatformDxe [DLINK1] SecurityStubDxe [MTOC] SecurityStubDxe [GENFW] SecurityStubDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf [X64] [CC] MemData [CC] ConSplitterGraphics [CC] HiiDatabaseEntry [CC] ComponentName [CC] FwVolBlock [CC] FwVolWrite [CC] Image [CC] FwVolRead [DLINK1] ConPlatformDxe [MTOC] ConPlatformDxe [GENFW] ConPlatformDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf [X64] [CC] FwVolAttrib [CC] Ffs [CC] ConSplitter [CC] AutoGen [SLINK] ConSplitterDxe [CC] FwVol [CC] Tpl [CC] Timer [CC] Setup [CC] ConfigRouting [CC] Event [CC] Dependency [DLINK1] VariableRuntimeDxe [MTOC] VariableRuntimeDxe [GENFW] VariableRuntimeDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf [X64] [CC] String [CC] Dispatcher [CC] IfrParse [CC] DxeProtocolNotify [CC] DxeMain [CC] Database [CC] AutoGen [SLINK] DxeCore [DLINK1] ConSplitterDxe [MTOC] ConSplitterDxe [GENFW] ConSplitterDxe Building ... /Users/Micky1979/src/edk2/Clover/GraphicsConsoleDxe/GraphicsConsoleDxe.inf [X64] [CC] Expression [CC] ComponentName [CC] Font [CC] LaffStd [CC] FormDisplay [CC] GraphicsConsole [CC] ProcessOptions [CC] AutoGen [CC] Presentation [SLINK] GraphicsConsoleDxe [CC] AutoGen [CC] ConfigKeywordHandler [SLINK] SetupBrowser [CC] AutoGen [SLINK] HiiDatabase [CC] InputHandler [CC] AutoGen [SLINK] DisplayEngine [DLINK1] GraphicsConsoleDxe [MTOC] GraphicsConsoleDxe [GENFW] GraphicsConsoleDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf [X64] [CC] DevicePath [CC] AutoGen [SLINK] DevicePathDxe [DLINK1] DxeCore [MTOC] DxeCore [DLINK1] DevicePathDxe [GENFW] DxeCore Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf [X64] [MTOC] DevicePathDxe [GENFW] DevicePathDxe Building ... /Users/Micky1979/src/edk2/DuetPkg/SmbiosGenDxe/SmbiosGen.inf [X64] [CC] SmbiosGen [CC] SmbiosDxe [CC] AutoGen [CC] AutoGen [SLINK] SmbiosGenDxe [SLINK] SmbiosDxe [DLINK1] SmbiosGenDxe [DLINK1] DisplayEngine [MTOC] SmbiosGenDxe [MTOC] DisplayEngine [DLINK1] SmbiosDxe [MTOC] SmbiosDxe [GENFW] SmbiosGenDxe Building ... /Users/Micky1979/src/edk2/Clover/OsxEfiLdr/EfiLdr.inf [X64] [GENFW] DisplayEngine Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/EbcDxe/EbcDxe.inf [X64] [GENFW] SmbiosDxe Building ... /Users/Micky1979/src/edk2/Clover/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf [X64] [CC] EfiLoader [CC] CpuIo2Dxe [CC] Debug [CC] AutoGen [SLINK] CpuIo2Dxe [CC] PeLoader [CC] EbcExecute [CC] Support [CC] EbcInt [CC] AutoGen [DLINK1] CpuIo2Dxe [MTOC] CpuIo2Dxe [SLINK] EfiLoader [GENFW] CpuIo2Dxe Building ... /Users/Micky1979/src/edk2/Clover/CpuDxe/Cpu.inf [X64] [CC] EbcSupport [DLINK1] SetupBrowser [MTOC] SetupBrowser [GENFW] SetupBrowser Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf [X64] [CC] 8259 [ASM] EbcLowLevel /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/Clover/CpuDxe/Cpu/OUTPUT/X64/CpuInterrupt.iii:30: warning: absolute address can not be RIP-relative /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/Clover/CpuDxe/Cpu/OUTPUT/X64/CpuInterrupt.iii:31: warning: absolute address can not be RIP-relative /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/Clover/CpuDxe/Cpu/OUTPUT/X64/CpuInterrupt.iii:32: warning: absolute address can not be RIP-relative /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/Clover/CpuDxe/Cpu/OUTPUT/X64/CpuInterrupt.iii:36: warning: absolute address can not be RIP-relative /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/Clover/CpuDxe/Cpu/OUTPUT/X64/CpuInterrupt.iii:37: warning: absolute address can not be RIP-relative /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/Clover/CpuDxe/Cpu/OUTPUT/X64/CpuInterrupt.iii:38: warning: absolute address can not be RIP-relative [CC] AutoGen [CC] AutoGen [SLINK] Legacy8259 [NASM] CpuInterrupt [SLINK] EbcDxe [DLINK1] Legacy8259 [CC] Cpu [MTOC] Legacy8259 [GENFW] Legacy8259 Building ... /Users/Micky1979/src/edk2/Clover/AcpiReset/Reset.inf [X64] [CC] AutoGen [SLINK] Cpu [CC] Reset [CC] AutoGen [SLINK] AcpiReset [DLINK1] EbcDxe [MTOC] EbcDxe [DLINK1] EfiLoader [MTOC] EfiLoader [GENFW] EbcDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Metronome/Metronome.inf [X64] [DLINK1] Cpu [MTOC] Cpu [GENFW] EfiLoader Building ... /Users/Micky1979/src/edk2/Clover/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf [X64] [GENFW] Cpu Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/8254TimerDxe/8254Timer.inf [X64] [CC] Metronome [CC] PcRtcEntry [CC] AutoGen [CC] Timer [SLINK] Metronome [CC] AutoGen [SLINK] Timer [CC] PcRtc [DLINK1] AcpiReset [MTOC] AcpiReset [CC] AutoGen [GENFW] AcpiReset Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/HpetTimerDxe/HpetTimerDxe.inf [X64] [SLINK] PcRtc [DLINK1] Timer [MTOC] Timer [DLINK1] HiiDatabase [MTOC] HiiDatabase [GENFW] Timer Building ... /Users/Micky1979/src/edk2/Clover/PciRootBridgeDxe/PciRootBridge.inf [X64] [DLINK1] Metronome [MTOC] Metronome [GENFW] HiiDatabase Building ... /Users/Micky1979/src/edk2/Clover/OsxPciBusNoEnumerationDxe/PciBusNoEnumeration.inf [X64] [GENFW] Metronome Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf [X64] [CC] HpetTimer [CC] AutoGen [CC] PciPowerManagement [SLINK] HpetTimerDxe [CC] PcatPciRootBridge [CC] NvmExpressBlockIo [CC] PcatPciRootBridgeDevicePath [CC] PciRomTable [CC] ComponentName [CC] PciDriverOverride [CC] PcatPciRootBridgeIo [CC] NvmExpress [CC] PciOptionRomSupport [CC] NvmExpressDiskInfo [CC] DeviceIo [DLINK1] PcRtc [DLINK1] HpetTimerDxe [MTOC] HpetTimerDxe [MTOC] PcRtc [GENFW] HpetTimerDxe Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf [X64] [GENFW] PcRtc [CC] PciEnumerator Building ... /Users/Micky1979/src/edk2/Clover/DriverOverride/DriverOverride.inf [X64] [CC] PcatIo [CC] AutoGen [CC] DriverOverride [CC] DataHub [SLINK] PcatPciRootBridge [CC] NvmExpressHci [CC] AutoGen [CC] AutoGen [SLINK] DriverOverride [SLINK] DataHubDxe [CC] PciEnumeratorSupport [CC] NvmExpressPassthru [CC] PciCommand [CC] AutoGen [SLINK] NvmExpressDxe [CC] ComponentName [DLINK1] DriverOverride [MTOC] DriverOverride [GENFW] DriverOverride Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxHfs.inf [X64] [CC] PciDeviceSupport [DLINK1] DataHubDxe [MTOC] DataHubDxe [GENFW] DataHubDxe Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxIso9660.inf [X64] [CC] PciBus [CC] fsw_hfs [CC] fsw_iso9660 [CC] PciIo [CC] AutoGen [SLINK] PciBusNoEnumerationDxe [DLINK1] PcatPciRootBridge [MTOC] PcatPciRootBridge [CC] fsw_core [CC] fsw_core [GENFW] PcatPciRootBridge Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxExt2.inf [X64] [CC] fsw_efi_lib [CC] fsw_efi_lib [CC] fsw_ext2 [CC] fsw_efi [CC] fsw_efi [CC] fsw_core [CC] fsw_lib [CC] fsw_lib [CC] fsw_efi_lib [CC] AutoGen [CC] AutoGen [SLINK] VBoxHfs [SLINK] VBoxIso9600 [CC] fsw_efi [CC] fsw_lib [DLINK1] NvmExpressDxe [MTOC] NvmExpressDxe [CC] AutoGen [GENFW] NvmExpressDxe Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxExt4.inf [X64] [SLINK] VBoxExt2 [DLINK1] PciBusNoEnumerationDxe [MTOC] PciBusNoEnumerationDxe [GENFW] PciBusNoEnumerationDxe Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxReiserFS.inf [X64] [CC] fsw_ext4 [CC] fsw_core [CC] fsw_reiserfs [CC] fsw_efi_lib [CC] fsw_core [DLINK1] VBoxIso9600 [MTOC] VBoxIso9600 [CC] fsw_efi [GENFW] VBoxIso9600 Building ... /Users/Micky1979/src/edk2/Clover/FatPkg/EnhancedFatDxe/Fat.inf [X64] [CC] fsw_efi_lib [CC] DirectoryCache [CC] fsw_efi [CC] fsw_lib [CC] DiskCache [CC] AutoGen [SLINK] VBoxExt4 [DLINK1] VBoxHfs [MTOC] VBoxHfs [CC] FileName [GENFW] VBoxHfs Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/EXFAT.inf [X64] [CC] fsw_lib [CC] Hash [CC] AutoGen [SLINK] VBoxReiserFS [DLINK1] VBoxExt2 [MTOC] VBoxExt2 [CC] driver [GENFW] VBoxExt2 Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/HFSPLUS.inf [X64] [CC] DirectoryManage [CC] file [CC] driver [CC] ComponentName [CC] grub_driver [CC] ReadWrite [CC] file [CC] grub_file [CC] OpenVolume [CC] grub_driver [CC] Open [CC] grub [CC] logging [CC] grub_file [CC] Misc [CC] missing [CC] grub [CC] Init [CC] path [CC] logging [CC] Info [CC] missing [CC] utf8 [CC] FileSpace [CC] path [CC] device [CC] Flush [CC] err [CC] utf8 [DLINK1] VBoxExt4 [MTOC] VBoxExt4 [CC] Fat [GENFW] VBoxExt4 Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/ISO9660.inf [X64] [CC] Delete [CC] Data [CC] driver [CC] misc [DLINK1] VBoxReiserFS [CC] UnicodeCollation [CC] list [MTOC] VBoxReiserFS [GENFW] VBoxReiserFS Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/NTFS.inf [X64] [CC] file [CC] AutoGen [SLINK] Fat [CC] fshelp [CC] grub_driver [CC] driver [CC] grub_file [CC] file [CC] grub [CC] exfat [CC] grub_driver [CC] AutoGen [CC] logging [SLINK] GrubEXFAT [CC] missing [CC] grub_file [CC] path [CC] gzio [CC] grub [CC] utf8 [CC] logging [CC] device [CC] missing [CC] err [CC] device [CC] path [CC] err [CC] utf8 [CC] misc [CC] list [CC] device [CC] misc [CC] err [CC] list [CC] fshelp [CC] fshelp [CC] hfspluscomp [CC] misc [CC] list [CC] fshelp [CC] iso9660 [CC] hfsplus [DLINK1] Fat [MTOC] Fat [CC] AutoGen [CC] AutoGen [GENFW] Fat Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/UDF.inf [X64] [SLINK] GrubISO9660 [SLINK] GrubHFSPLUS [CC] ntfscomp [CC] driver [CC] file [CC] grub_driver [CC] ntfs [CC] AutoGen [CC] grub_file [SLINK] GrubNTFS [DLINK1] GrubEXFAT [MTOC] GrubEXFAT [CC] grub [GENFW] GrubEXFAT Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Pci/VgaMiniPortDxe/VgaMiniPortDxe.inf [X64] [CC] logging [CC] ComponentName [CC] missing [CC] VgaMiniPort [CC] path [CC] AutoGen [SLINK] VgaMiniPort [CC] utf8 [CC] device [CC] err [DLINK1] VgaMiniPort [MTOC] VgaMiniPort [GENFW] VgaMiniPort Building ... /Users/Micky1979/src/edk2/Clover/BiosVideo/BiosVideo.inf [X64] [CC] misc [CC] list [CC] fshelp [DLINK1] GrubISO9660 [MTOC] GrubISO9660 [GENFW] GrubISO9660 [CC] BiosVideoNew Building ... /Users/Micky1979/src/edk2/Clover/LegacyBios/VideoDxe/VideoDxe.inf [X64] [CC] udf [CC] ComponentName [CC] AutoGen [SLINK] GrubUDF [CC] LegacyBiosThunk [CC] AutoGen [SLINK] BiosVideo [DLINK1] GrubHFSPLUS [MTOC] GrubHFSPLUS [GENFW] GrubHFSPLUS Building ... /Users/Micky1979/src/edk2/Clover/SataControllerDxe/SataControllerDxe.inf [X64] [CC] BiosVideo [DLINK1] GrubNTFS [MTOC] GrubNTFS [CC] ComponentName [CC] ComponentName [GENFW] GrubNTFS Building ... /Users/Micky1979/src/edk2/Clover/AtaAtapi/AtaAtapiPassThru.inf [X64] [CC] AutoGen [SLINK] CsmVideoDxe [CC] SataController [CC] AutoGen [SLINK] SataController [CC] AtaAtapiPassThru [CC] AhciMode [DLINK1] SataController [MTOC] SataController [GENFW] SataController Building ... /Users/Micky1979/src/edk2/Clover/AtaBus/AtaBusDxe.inf [X64] [CC] IdeMode [CC] AtaBus [DLINK1] BiosVideo [CC] ComponentName [MTOC] BiosVideo [GENFW] BiosVideo [CC] AtaPassThruExecute Building ... /Users/Micky1979/src/edk2/Clover/DVDBus/ScsiBusDxe.inf [X64] [CC] AutoGen [SLINK] AtaAtapiPassThruDxe [CC] ComponentName [CC] ComponentName [CC] AutoGen [SLINK] AtaBusDxe [CC] ScsiBus [DLINK1] GrubUDF [MTOC] GrubUDF [CC] AutoGen [SLINK] ScsiBus [GENFW] GrubUDF Building ... /Users/Micky1979/src/edk2/Clover/DVDDisk/ScsiDiskDxe.inf [X64] [CC] ComponentName [DLINK1] CsmVideoDxe [MTOC] CsmVideoDxe [GENFW] CsmVideoDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf [X64] [CC] UhciSched [CC] ScsiDisk [DLINK1] ScsiBus [MTOC] ScsiBus [CC] AutoGen [CC] UhciDebug [SLINK] ScsiDisk [GENFW] ScsiBus Building ... /Users/Micky1979/src/edk2/Clover/OhciDxe/OhciDxe.inf [X64] [DLINK1] AtaBusDxe [MTOC] AtaBusDxe [GENFW] AtaBusDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf [X64] [CC] UhciQueue [CC] UhciReg [CC] EhciUrb [CC] UsbHcMem [CC] Ohci [CC] UsbHcMem [CC] OhciSched [CC] Uhci [CC] EhciSched [CC] ComponentName [CC] EhciDebug [CC] OhciReg [CC] AutoGen [SLINK] UhciDxe [DLINK1] AtaAtapiPassThruDxe [CC] EhciReg [MTOC] AtaAtapiPassThruDxe [GENFW] AtaAtapiPassThruDxe Building ... /Users/Micky1979/src/edk2/Clover/Patches_for_EDK2/XhciDxe/XhciDxe.inf [X64] [CC] OhciUrb [CC] ComponentName [CC] OhciDebug [CC] ComponentName [CC] Ehci [CC] Xhci [CC] AutoGen [SLINK] EhciDxe [CC] UsbHcMem [DLINK1] ScsiDisk [MTOC] ScsiDisk [CC] AutoGen [GENFW] ScsiDisk Building ... /Users/Micky1979/src/edk2/Clover/Patches_for_EDK2/UsbBusDxe/UsbBusDxe.inf [X64] [SLINK] OhciDxe [CC] XhciReg [CC] UsbDesc [CC] UsbEnumer [DLINK1] UhciDxe [MTOC] UhciDxe [CC] UsbBus [GENFW] UhciDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf [X64] [CC] XhciSched [CC] UsbHub [CC] EfiKey [CC] ComponentName [CC] UsbHcMem [CC] UsbUtility [CC] ComponentName [DLINK1] EhciDxe [CC] KeyBoard [MTOC] EhciDxe [CC] AutoGen [CC] AutoGen [SLINK] UsbBusDxe [SLINK] XhciDxe [GENFW] EhciDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf [X64] [CC] ComponentName [CC] AutoGen [SLINK] UsbKbDxe [CC] UsbMassBot [CC] ComponentName [DLINK1] OhciDxe [CC] UsbMassImpl [MTOC] OhciDxe [GENFW] OhciDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouseDxe.inf [X64] [CC] UsbMassBoot [CC] ComponentName [CC] UsbMassCbi [CC] MouseHid [CC] UsbMassDiskInfo [CC] UsbMouse [CC] AutoGen [SLINK] UsbMassStorageDxe [CC] AutoGen [DLINK1] UsbKbDxe [MTOC] UsbKbDxe [SLINK] UsbMouseDxe [GENFW] UsbKbDxe Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf [X64] [CC] PcatIsaAcpi [DLINK1] UsbBusDxe [MTOC] UsbBusDxe [GENFW] UsbBusDxe Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf [X64] [CC] IsaAcpi [CC] ComponentName [CC] ComponentName [CC] AutoGen [DLINK1] UsbMouseDxe [SLINK] IsaAcpi [MTOC] UsbMouseDxe [CC] IsaIo [GENFW] UsbMouseDxe Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf [X64] [CC] IsaBus [CC] ComponentName [CC] AutoGen [SLINK] IsaBusDxe [CC] Ps2KbdCtrller [DLINK1] UsbMassStorageDxe [MTOC] UsbMassStorageDxe [GENFW] UsbMassStorageDxe Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/Ps2MouseAbsolutePointerDxe.inf [X64] [CC] Ps2KbdTextIn [DLINK1] IsaAcpi [MTOC] IsaAcpi [GENFW] IsaAcpi Building ... /Users/Micky1979/src/edk2/Clover/Ps2MouseDxe/Ps2MouseDxe.inf [X64] [CC] ComponentName [CC] Ps2Keyboard [CC] AutoGen [CC] ComponentName [SLINK] Ps2KeyboardDxe [CC] CommPs2 [DLINK1] IsaBusDxe [MTOC] IsaBusDxe [GENFW] IsaBusDxe Building ... /Users/Micky1979/src/edk2/Clover/OsxAcpiTableDxe/AcpiTableDxe.inf [X64] [CC] CommPs2 [CC] Ps2MouseAbsolutePointer [CC] AutoGen [SLINK] Ps2MouseAbsolutePointerDxe [CC] Ps2Mouse [CC] AutoGen [SLINK] Ps2MouseDxe [DLINK1] XhciDxe [MTOC] XhciDxe [CC] AcpiTableProtocol [GENFW] XhciDxe Building ... /Users/Micky1979/src/edk2/Clover/OsxAcpiPlatformDxe/AcpiPlatformDxe.inf [X64] [CC] AcpiTable [CC] AutoGen [CC] AcpiPlatform [SLINK] AcpiTableDxe [CC] AutoGen [DLINK1] Ps2MouseAbsolutePointerDxe [MTOC] Ps2MouseAbsolutePointerDxe [SLINK] AcpiPlatform [DLINK1] Ps2KeyboardDxe [MTOC] Ps2KeyboardDxe [GENFW] Ps2MouseAbsolutePointerDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf [X64] [GENFW] Ps2KeyboardDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf [X64] [CC] ComponentName [DLINK1] Ps2MouseDxe [CC] UnicodeCollationEng [MTOC] Ps2MouseDxe [GENFW] Ps2MouseDxe Building ... /Users/Micky1979/src/edk2/Clover/PartitionDxe/PartitionDxe.inf [X64] [CC] AutoGen [SLINK] EnglishDxe [CC] DiskIo [CC] ComponentName [CC] AutoGen [SLINK] DiskIoDxe [DLINK1] EnglishDxe [CC] Mbr [MTOC] EnglishDxe [GENFW] EnglishDxe Building ... /Users/Micky1979/src/edk2/Clover/BiosKeyboard/KeyboardDxe.inf [X64] [DLINK1] AcpiPlatform [MTOC] AcpiPlatform [GENFW] AcpiPlatform Building ... /Users/Micky1979/src/edk2/Clover/LegacyBios/Region2Dxe/LegacyRegion2Dxe.inf [X64] [CC] Gpt [DLINK1] AcpiTableDxe [MTOC] AcpiTableDxe [CC] ComponentName [GENFW] AcpiTableDxe Building ... /Users/Micky1979/src/edk2/Clover/FSInject/FSInject.inf [X64] [CC] ElTorito [CC] LegacyRegion2 [CC] Apple [CC] AutoGen [SLINK] LegacyRegion2Dxe [CC] FSInject [CC] BiosKeyboard [CC] Partition [CC] Test [CC] LegacyBiosThunk [CC] AutoGen [CC] AutoGen [SLINK] PartitionDxe [DLINK1] DiskIoDxe [SLINK] FSInject [MTOC] DiskIoDxe [GENFW] DiskIoDxe Building ... /Users/Micky1979/src/edk2/Clover/MsgLog/MsgLog.inf [X64] [CC] AutoGen [SLINK] KeyboardDxe [CC] MsgLog [CC] AutoGen [SLINK] MsgLog [DLINK1] LegacyRegion2Dxe [MTOC] LegacyRegion2Dxe [DLINK1] MsgLog [MTOC] MsgLog [GENFW] LegacyRegion2Dxe Building ... /Users/Micky1979/src/edk2/Clover/DumpUefiCalls/DumpUefiCalls.inf [X64] [GENFW] MsgLog Building ... /Users/Micky1979/src/edk2/Clover/OsxFatBinaryDrv/OsxFatBinaryDrv.inf [X64] [CC] DumpUefiCalls [DLINK1] KeyboardDxe [CC] OsxFatBinaryDrv [MTOC] KeyboardDxe [GENFW] KeyboardDxe Building ... /Users/Micky1979/src/edk2/Clover/EmuVariableUefi/EmuVariableRuntimeDxe.inf [X64] [CC] AutoGen [SLINK] OsxFatBinaryDrv [CC] Lib [CC] InitVariable [DLINK1] FSInject [MTOC] FSInject [GENFW] FSInject Building ... /Users/Micky1979/src/edk2/Clover/AppleImageCodec/AppleImageCodec.inf [X64] [CC] BootServices [CC] AppleImageCodec [CC] EmuVariable [CC] RuntimeServices [CC] AutoGen [DLINK1] PartitionDxe [SLINK] EmuVariableUefi [DLINK1] OsxFatBinaryDrv [MTOC] PartitionDxe [CC] Log [MTOC] OsxFatBinaryDrv [GENFW] PartitionDxe Building ... /Users/Micky1979/src/edk2/Clover/bdmesg_efi/bdmesg.inf [X64] [GENFW] OsxFatBinaryDrv Building ... /Users/Micky1979/src/edk2/Clover/OsxAptioFixDrv/OsxAptioFixDrv.inf [X64] [CC] MemLog [CC] bdmesg [CC] FileLib [CC] OsxAptioFixDrv [CC] AutoGen [SLINK] bdmesg [CC] DataHub [CC] BootFixes [CC] Fs [CC] AutoGen [CC] DecodedKernelCheck [SLINK] DumpUefiCalls [CC] BootArgs [CC] VMem [CC] picopng [CC] Lib [CC] AutoGen [SLINK] AppleImageCodec [CC] device_tree [DLINK1] EmuVariableUefi [MTOC] EmuVariableUefi [CC] NVRAMDebug [GENFW] EmuVariableUefi Building ... /Users/Micky1979/src/edk2/Clover/OsxAptioFixDrv/OsxAptioFix2Drv.inf [X64] [CC] Mach-O [DLINK1] bdmesg [MTOC] bdmesg [GENFW] bdmesg Building ... /Users/Micky1979/src/edk2/Clover/OsxLowMemFixDrv/OsxLowMemFixDrv.inf [X64] [CC] OsxAptioFix2Drv [CC] OsxLowMemFixDrv /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/Clover/OsxAptioFixDrv/OsxAptioFixDrv/OUTPUT/X64/AsmFuncsX64.iii:221: warning: absolute address can not be RIP-relative /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/Clover/OsxAptioFixDrv/OsxAptioFixDrv/OUTPUT/X64/AsmFuncsX64.iii:225: warning: absolute address can not be RIP-relative /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/Clover/OsxAptioFixDrv/OsxAptioFixDrv/OUTPUT/X64/AsmFuncsX64.iii:226: warning: absolute address can not be RIP-relative [CC] BootFixes [NASM] AsmFuncsX64 [CC] Lib [CC] AutoGen [SLINK] OsxAptioFixDrv [CC] DecodedKernelCheck [DLINK1] DumpUefiCalls [CC] AutoGen [MTOC] DumpUefiCalls [SLINK] OsxLowMemFixDrv [GENFW] DumpUefiCalls [CC] BootArgs Building ... /Users/Micky1979/src/edk2/Clover/OsxBdsDxe/BdsDxe.inf [X64] [CC] VMem [CC] HwErrRecSupport [VFR] BdsDxe [CC] Lib [CC] DeviceManagerVfr [DLINK1] OsxLowMemFixDrv [MTOC] OsxLowMemFixDrv [VFR] BdsDxe [GENFW] OsxLowMemFixDrv Building ... /Users/Micky1979/src/edk2/Clover/rEFIt_UEFI/refit.inf [X64] [CC] device_tree [CC] DriverHealthVfr [CC] NVRAMDebug [CC] Mach-O [DLINK1] AppleImageCodec [MTOC] AppleImageCodec [GENFW] AppleImageCodec [CC] DeviceManager /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/Clover/OsxAptioFixDrv/OsxAptioFix2Drv/OUTPUT/X64/AsmFuncsX64.iii:221: warning: absolute address can not be RIP-relative /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/Clover/OsxAptioFixDrv/OsxAptioFix2Drv/OUTPUT/X64/AsmFuncsX64.iii:225: warning: absolute address can not be RIP-relative /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/X64/Clover/OsxAptioFixDrv/OsxAptioFix2Drv/OUTPUT/X64/AsmFuncsX64.iii:226: warning: absolute address can not be RIP-relative [CC] BdsConnect [VFR] BdsDxe [NASM] AsmFuncsX64 [CC] BootManagerVfr [CC] AutoGen [SLINK] OsxAptioFix2Drv [DLINK1] OsxAptioFixDrv [MTOC] OsxAptioFixDrv [GENFW] OsxAptioFixDrv [CC] BootManager [VFR] BdsDxe [CC] FE [CC] FileExplorer [CC] main [CC] BootMaint [DLINK1] OsxAptioFix2Drv [MTOC] OsxAptioFix2Drv [CC] icns [GENFW] OsxAptioFix2Drv [CC] BBSsupport [CC] UpdatePage [CC] lib [CC] Variable [CC] Data [CC] BootOption [CC] BmLib [VFR] BdsDxe [CC] Bm [CC] menu [CC] Hotkey [CC] MemoryTest [CC] screen [CC] Capsules [CC] String [CC] IO [CC] Language [VFR] BdsDxe [CC] FrontPageVfr [CC] common [CC] FrontPage [CC] legacy [CC] BdsEntry [CC] AutoGen [SLINK] BdsDxe [CC] loader [CC] tool [CC] secureboot [CC] securehash [CC] securemenu [CC] securevars [CC] bootscreen [CC] lockedgraphics [CC] BmLib [CC] image [CC] load_bmp [CC] load_icns [CC] libscreen [DLINK1] BdsDxe [MTOC] BdsDxe [GENFW] BdsDxe [CC] lodepng [CC] text [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] gma [CC] guid [CC] Injectors [CC] LegacyBiosThunk [CC] LegacyBoot [CC] nvidia [CC] picopng [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] AutoGen [SLINK] CLOVERX64 [DLINK1] CLOVERX64 [MTOC] CLOVERX64 [GENFW] CLOVERX64 Generating DUETEFIMAINFVX64 FV ######################################## ######################################## ######################################## ################## GUID cross reference file can be found at /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/FV/Guid.xref FV Space Information DUETEFIMAINFVX64 [34%Full] 2752512 total, 943536 used, 1808976 free - Done - Build end time: 20:44:28, Aug.26 2016 Build total time: 00:01:17 Compressing DUETEFIMainFv.FV ... Encoding Compressing DxeCore.efi ... Encoding Compressing DxeIpl.efi ... Encoding Generate Loader Image ... Created /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/FV/Efildr64 879+0 records in 879+0 records out 450048 bytes transferred in 0.002982 secs (150914465 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.000018 secs (55924 bytes/sec) -> BOOTX64.efi -> CLOVERX64.efi Copy Mandatory drivers: -> FSInject-64.efi -> FSInject-64.efi -> OsxFatBinaryDrv-64.efi -> VBoxHfs-64.efi Copy Optional drivers: -> NvmExpressDxe-64.efi -> Ps2MouseDxe-64.efi -> UsbMouseDxe-64.efi -> VBoxExt2-64.efi -> VBoxExt4-64.efi -> VBoxIso9600-64.efi -> XhciDxe-64.efi -> GrubEXFAT-64.efi -> GrubISO9660-64.efi -> GrubNTFS-64.efi -> GrubUDF-64.efi -> CsmVideoDxe-64.efi -> DataHubDxe-64.efi -> EmuVariableUefi-64.efi -> OsxAptioFix2Drv-64.efi -> OsxAptioFixDrv-64.efi -> OsxLowMemFixDrv-64.efi -> PartitionDxe-64.efi Copy Applications: -> bdmesg.efi Done! Generating BootSectors make: Nothing to be done for `all'. Done! =============================================================================== boot7 <---------------------------------------------------- TOOLCHAIN_DIR: /Users/Micky1979/src/opt/local NASM_PREFIX: /Users/Micky1979/src/opt/local/bin/ NASM_VER: 2.12.02 Initializing workspace Loading previous configuration from /Users/Micky1979/src/edk2/Conf/BuildEnv.sh WORKSPACE: /Users/Micky1979/src/edk2 EDK_TOOLS_PATH: /Users/Micky1979/src/edk2/BaseTools CONF_PATH: /Users/Micky1979/src/edk2/Conf Running edk2 build for CloverX64 using the command: build --skip-autogen -D DISABLE_USB_SUPPORT -D NO_GRUB_DRIVERS_EMBEDDED -D CHECK_FLAGS -D USE_BIOS_BLOCKIO -D USE_LOW_EBDA -p Clover/Clover.dsc -a X64 -b RELEASE -t XCODE5 -n 5 Build environment: Darwin-15.6.0-x86_64-i386-64bit Build start time: 20:44:30, Aug.26 2016 WORKSPACE = /Users/Micky1979/src/edk2 ECP_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EDK_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EFI_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EDK_TOOLS_PATH = /Users/Micky1979/src/edk2/BaseTools Architecture(s) = X64 Build target = RELEASE Toolchain = XCODE5 Active Platform = /Users/Micky1979/src/edk2/Clover/Clover.dsc Flash Image Definition = /Users/Micky1979/src/edk2/Clover/Clover.fdf Processing meta-data ... done! Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseLib/BaseLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePrintLib/BasePrintLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxDxeIpl/DxeIpl.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiLib/UefiLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/VBoxPeCoffLib/VBoxPeCoffLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/DuetTimerLib/DuetTimerLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeServicesLib/DxeServicesLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeHobLib/DxeHobLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxePcdLib/DxePcdLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/GenericBdsLib/GenericBdsLib.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/Library/OsxBdsPlatformLib/PlatformBds.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/Library/BaseIoApicLib/BaseIoApicLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/MemLogLibDefault/MemLogLibDefault.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Library/VideoBiosPatchLib/VideoBiosPatchLib.inf [X64] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiUsbLib/UefiUsbLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/ShellPkg/Library/UefiShellLib/UefiShellLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiMemoryLib/UefiMemoryLib.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/Library/OpensslLib/OpensslLibNull.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseCpuLib/BaseCpuLib.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxDxeCore/DxeMain.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/PCD/Dxe/Pcd.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GraphicsConsoleDxe/GraphicsConsoleDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/DuetPkg/SmbiosGenDxe/SmbiosGen.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxEfiLdr/EfiLdr.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/OsxBdsDxe/BdsDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/EbcDxe/EbcDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/CpuDxe/Cpu.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/AcpiReset/Reset.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Metronome/Metronome.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/8254TimerDxe/8254Timer.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/HpetTimerDxe/HpetTimerDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/PciRootBridgeDxe/PciRootBridge.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxPciBusNoEnumerationDxe/PciBusNoEnumeration.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/DriverOverride/DriverOverride.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxHfs.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxIso9660.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxExt2.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxExt4.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxReiserFS.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/FatPkg/EnhancedFatDxe/Fat.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/EXFAT.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/HFSPLUS.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/ISO9660.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/NTFS.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/UDF.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Pci/VgaMiniPortDxe/VgaMiniPortDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/BiosVideo/BiosVideo.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/LegacyBios/VideoDxe/VideoDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/LegacyBios/BlockIoDxe/BlockIoDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/OhciDxe/OhciDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/Patches_for_EDK2/XhciDxe/XhciDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/Patches_for_EDK2/UsbBusDxe/UsbBusDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouseDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf [X64] make: Nothing to be done for `tbuild'. [CC] BiosBlkIo Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/Ps2MouseAbsolutePointerDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/Ps2MouseDxe/Ps2MouseDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxAcpiTableDxe/AcpiTableDxe.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/OsxAcpiPlatformDxe/AcpiPlatformDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/PartitionDxe/PartitionDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/BiosKeyboard/KeyboardDxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/LegacyBios/Region2Dxe/LegacyRegion2Dxe.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/FSInject/FSInject.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/MsgLog/MsgLog.inf [X64] make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/DumpUefiCalls/DumpUefiCalls.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/OsxFatBinaryDrv/OsxFatBinaryDrv.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/EmuVariableUefi/EmuVariableRuntimeDxe.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/AppleImageCodec/AppleImageCodec.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/bdmesg_efi/bdmesg.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. Building ... /Users/Micky1979/src/edk2/Clover/rEFIt_UEFI/refit.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/OsxAptioFixDrv/OsxAptioFixDrv.inf [X64] make: Nothing to be done for `tbuild'. [CC] BiosInt13 Building ... /Users/Micky1979/src/edk2/Clover/OsxAptioFixDrv/OsxAptioFix2Drv.inf [X64] Building ... /Users/Micky1979/src/edk2/Clover/OsxLowMemFixDrv/OsxLowMemFixDrv.inf [X64] make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. make: Nothing to be done for `tbuild'. [CC] ComponentName make: Nothing to be done for `tbuild'. [CC] LegacyBiosThunk [CC] AutoGen [SLINK] BiosBlockIoDxe [DLINK1] BiosBlockIoDxe [MTOC] BiosBlockIoDxe [GENFW] BiosBlockIoDxe Generating DUETEFIMAINFVX64 FV ######### GUID cross reference file can be found at /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/FV/Guid.xref FV Space Information DUETEFIMAINFVX64 [29%Full] 2752512 total, 804472 used, 1948040 free - Done - Build end time: 20:44:40, Aug.26 2016 Build total time: 00:00:10 Compressing DUETEFIMainFv.FV ... Encoding Compressing DxeCore.efi ... Encoding Compressing DxeIpl.efi ... Encoding Generate Loader Image ... Created /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/FV/Efildr64 879+0 records in 879+0 records out 450048 bytes transferred in 0.003189 secs (141131823 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.000019 secs (53092 bytes/sec) -> BOOTX64.efi -> CLOVERX64.efi Copy Mandatory drivers: -> FSInject-64.efi -> FSInject-64.efi -> OsxFatBinaryDrv-64.efi -> VBoxHfs-64.efi Copy Optional drivers: -> NvmExpressDxe-64.efi -> Ps2MouseDxe-64.efi -> UsbMouseDxe-64.efi -> VBoxExt2-64.efi -> VBoxExt4-64.efi -> VBoxIso9600-64.efi -> XhciDxe-64.efi -> GrubEXFAT-64.efi -> GrubISO9660-64.efi -> GrubNTFS-64.efi -> GrubUDF-64.efi -> CsmVideoDxe-64.efi -> DataHubDxe-64.efi -> EmuVariableUefi-64.efi -> OsxAptioFix2Drv-64.efi -> OsxAptioFixDrv-64.efi -> OsxLowMemFixDrv-64.efi -> PartitionDxe-64.efi Copy Applications: -> bdmesg.efi Done! Generating BootSectors make: Nothing to be done for `all'. Done! =============================================================================== boot3 <---------------------------------------------------- TOOLCHAIN_DIR: /Users/Micky1979/src/opt/local NASM_PREFIX: /Users/Micky1979/src/opt/local/bin/ NASM_VER: 2.12.02 Initializing workspace Loading previous configuration from /Users/Micky1979/src/edk2/Conf/BuildEnv.sh WORKSPACE: /Users/Micky1979/src/edk2 EDK_TOOLS_PATH: /Users/Micky1979/src/edk2/BaseTools CONF_PATH: /Users/Micky1979/src/edk2/Conf Running edk2 build for CloverIA32 using the command: build --skip-autogen -D NO_GRUB_DRIVERS_EMBEDDED -D CHECK_FLAGS -D USE_LOW_EBDA -p Clover/Clover.dsc -a IA32 -b RELEASE -t XCODE5 -n 5 Build environment: Darwin-15.6.0-x86_64-i386-64bit Build start time: 20:44:42, Aug.26 2016 WORKSPACE = /Users/Micky1979/src/edk2 ECP_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EDK_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EFI_SOURCE = /Users/Micky1979/src/edk2/EdkCompatibilityPkg EDK_TOOLS_PATH = /Users/Micky1979/src/edk2/BaseTools Architecture(s) = IA32 Build target = RELEASE Toolchain = XCODE5 Active Platform = /Users/Micky1979/src/edk2/Clover/Clover.dsc Flash Image Definition = /Users/Micky1979/src/edk2/Clover/Clover.fdf Processing meta-data ... done! Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf [IA32] [CC] PcdLib [SLINK] BasePcdLibNull Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseLib/BaseLib.inf [IA32] [CC] DebugLib [SLINK] BaseDebugLibNull Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePrintLib/BasePrintLib.inf [IA32] [CC] SetMem [CC] ScanMem64Wrapper [CC] ScanMem32Wrapper [CC] ScanMem16Wrapper Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf [IA32] [CC] ScanMem8Wrapper [CC] CheckSum [CC] ZeroMemWrapper [CC] BaseReportStatusCodeLib [CC] IoLibMmioBuffer [SLINK] BaseReportStatusCodeLibNull Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf [IA32] [CC] SwitchStack [CC] CompareMemWrapper [CC] SetMem64Wrapper [CC] SwapBytes64 [CC] SetMem32Wrapper [CC] PrintLibInternal [CC] IoHighLevel [CC] SwapBytes32 [CC] SetMem16Wrapper [CC] SwapBytes16 [CC] IoLibGcc [CC] PrintLib [SLINK] BasePrintLib [CC] SetMemWrapper [CC] LongJump [CC] IoLib [CC] MemoryAllocationLib [SLINK] BaseIoLibIntrinsic Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf [IA32] [CC] CopyMemWrapper [CC] SetJump [CC] RShiftU64 [CC] MemLibGeneric [CC] DxeCoreMemoryProfileLibNull [SLINK] DxeCoreMemoryAllocationLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf [IA32] [CC] RRotU64 [CC] DxeCoreEntryPoint [CC] MemLibGuid [SLINK] DxeCoreEntryPoint Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf [IA32] [CC] RRotU32 [CC] CopyMem [CC] MultU64x64 [SLINK] BaseMemoryLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf [IA32] [CC] UefiRuntimeServicesTableLib [SLINK] UefiRuntimeServicesTableLib [CC] MultU64x32 Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf [IA32] [CC] MultS64x64 [CC] PeCoffExtraActionLib [CC] UefiBootServicesTableLib [CC] DevicePathUtilities [SLINK] PeCoffExtraActionLibNull Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf [IA32] [SLINK] UefiBootServicesTableLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiLib/UefiLib.inf [IA32] [CC] ModU64x32 [CC] LShiftU64 [CC] LRotU64 [CC] HobLib [SLINK] DxeCoreHobLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf [IA32] [CC] LRotU32 [CC] UefiLibPrint [CC] LowBitSet64 [CC] X86Cache [SLINK] BaseCacheMaintenanceLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf [IA32] [CC] LowBitSet32 [CC] UefiNotTiano [CC] HighBitSet64 [CC] DevicePathToText [CC] HighBitSet32 [CC] GetPowerOfTwo64 [CC] BaseUefiDecompressLib [CC] UefiDriverModel [SLINK] BaseUefiDecompressLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf [IA32] [CC] GetPowerOfTwo32 [CC] DivU64x64Remainder [CC] PerformanceLib [SLINK] BasePerformanceLibNull Building ... /Users/Micky1979/src/edk2/Clover/Library/VBoxPeCoffLib/VBoxPeCoffLib.inf [IA32] [CC] DivU64x32Remainder [CC] Console [CC] DivU64x32 [CC] DivS64x64Remainder [CC] ARShiftU64 [CC] UefiLib [CC] BasePeCoff [CC] BitField [SLINK] UefiLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf [IA32] [CC] PeCoffLoaderEx [CC] DevicePathFromText [CC] CpuDeadLoop [SLINK] VBoxPeCoffLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf [IA32] [CC] Cpu [CC] PeCoffGetEntryPoint [SLINK] BasePeCoffGetEntryPointLib Building ... /Users/Micky1979/src/edk2/Clover/Library/DuetTimerLib/DuetTimerLib.inf [IA32] [CC] LinkedList [CC] UefiDevicePathLib [CC] DxeExtractGuidedSectionLib [SLINK] UefiDevicePathLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeServicesLib/DxeServicesLib.inf [IA32] [SLINK] DxeExtractGuidedSectionLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf [IA32] [CC] X86TimerLib [SLINK] DuetTimerLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf [IA32] [CC] DebugAgentLibNull [SLINK] DebugAgentLibNull Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf [IA32] [CC] SafeString [CC] CpuExceptionHandlerLibNull [SLINK] CpuExceptionHandlerLibNull Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeHobLib/DxeHobLib.inf [IA32] [CC] DxeServicesLib [SLINK] DxeServicesLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf [IA32] [CC] MemoryAllocationLib [SLINK] UefiMemoryAllocationLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf [IA32] [CC] String [CC] HobLib [CC] DriverEntryPoint [SLINK] DxeHobLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf [IA32] [SLINK] UefiDriverEntryPoint [CC] FilePaths Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf [IA32] [CC] RuntimeLib [SLINK] UefiRuntimeLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf [IA32] [CC] InternalGetSpinLockProperties [CC] GccInline [CC] GccInline [CC] VarCheckLib [CC] SynchronizationGcc [SLINK] VarCheckLib [CC] DxeServicesTableLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf [IA32] [SLINK] BaseSynchronizationLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLibNull.inf [IA32] [SLINK] DxeServicesTableLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf [IA32] [CC] TpmMeasurementLibNull [SLINK] TpmMeasurementLibNull Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf [IA32] [CC] AuthVariableLibNull [SLINK] AuthVariableLibNull Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf [IA32] [NASM] Thunk16 [CC] DxeCapsuleLibNull [CC] VarCheckUefiLibNullClass [SLINK] DxeCapsuleLibNull Building ... /Users/Micky1979/src/edk2/MdePkg/Library/DxePcdLib/DxePcdLib.inf [IA32] [SLINK] VarCheckUefiLib Building ... /Users/Micky1979/src/edk2/Clover/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf [IA32] [CC] DxeSecurityManagementLib [SLINK] DxeSecurityManagementLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf [IA32] [CC] UefiHiiServicesLib [SLINK] UefiHiiServicesLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf [IA32] [ASM] EnableDisableInterrupts [CC] DxePcdLib [SLINK] DxePcdLib Building ... /Users/Micky1979/src/edk2/Clover/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf [IA32] [CC] LzmaDecompress [CC] CustomizedDisplayLib [ASM] EnablePaging64 [CC] CustomizedDisplayLibInternal [ASM] DisablePaging32 [CC] HiiLib [CC] LzFind [CC] AutoGen [SLINK] CustomizedDisplayLib Building ... /Users/Micky1979/src/edk2/Clover/Library/GenericBdsLib/GenericBdsLib.inf [IA32] [CC] HiiString [CC] HiiLanguage [SLINK] UefiHiiLib Building ... /Users/Micky1979/src/edk2/Clover/Library/OsxBdsPlatformLib/PlatformBds.inf [IA32] [ASM] EnablePaging32 [CC] DevicePath [CC] LzmaDec [ASM] Mwait [CC] GuidedSectionExtraction [CC] Performance [SLINK] LzmaDecompressLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf [IA32] [CC] BdsPlatform [CC] PciCf8Lib [SLINK] BasePciCf8Lib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf [IA32] [CC] PlatformData [SLINK] DuetBds Building ... /Users/Micky1979/src/edk2/UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.inf [IA32] [ASM] Monitor [CC] PciLib [CC] BdsConnect [SLINK] BasePciLibCf8 Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/Library/BaseIoApicLib/BaseIoApicLib.inf [IA32] [CC] IoApicLib [SLINK] BaseIoApicLib Building ... /Users/Micky1979/src/edk2/Clover/Library/MemLogLibDefault/MemLogLibDefault.inf [IA32] [CC] BaseXApicLib [SLINK] BaseXApicLib Building ... /Users/Micky1979/src/edk2/Clover/Library/VideoBiosPatchLib/VideoBiosPatchLib.inf [IA32] [ASM] CpuIdEx [CC] MemLogLib [SLINK] MemLogLibDefault Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf [IA32] [CC] VideoBiosPatchLib [ASM] CpuId [CC] UefiScsiLib [CC] BdsMisc [CC] 915resolution [SLINK] UefiScsiLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiUsbLib/UefiUsbLib.inf [IA32] [CC] edid [CC] Hid [SLINK] VideoBiosPatchLib Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf [IA32] [ASM] LongJump [CC] UsbDxeLib [SLINK] UefiUsbLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf [IA32] [CC] UefiSortLib [SLINK] UefiSortLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf [IA32] [CC] BdsConsole [ASM] SetJump [CC] ApplicationEntryPoint [CC] UefiFileHandleLib [SLINK] UefiApplicationEntryPoint Building ... /Users/Micky1979/src/edk2/ShellPkg/Library/UefiShellLib/UefiShellLib.inf [IA32] [SLINK] UefiFileHandleLib Building ... /Users/Micky1979/src/edk2/MdePkg/Library/UefiMemoryLib/UefiMemoryLib.inf [IA32] [CC] ScanMem64Wrapper [ASM] SwapBytes64 [CC] ScanMem32Wrapper [CC] ScanMem16Wrapper [CC] ScanMem8Wrapper [ASM] DivU64x64Remainder [CC] UefiShellLib [CC] ZeroMemWrapper [SLINK] UefiShellLib Building ... /Users/Micky1979/src/edk2/Clover/Library/OpensslLib/OpensslLibNull.inf [IA32] [CC] CompareMemWrapper [CC] OpensslLibNull warning: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning for library: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/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/Micky1979/src/edk2/MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf [IA32] [CC] SetMem64Wrapper [ASM] DivU64x32Remainder [CC] SetMem32Wrapper [CC] SetMem16Wrapper [ASM] ModU64x32 [CC] SetMemWrapper [CC] CopyMemWrapper [CC] DxeNetLib [CC] BdsBoot [CC] MemLibGeneric [ASM] DivU64x32 [CC] String [CC] MemLibGuid [CC] AutoGen [SLINK] GenericBdsLib [CC] MemLib [CC] NetBuffer [SLINK] UefiMemoryLib [SLINK] DxeNetLib [ASM] MultU64x64 [ASM] MultU64x32 [ASM] RRotU64 [ASM] LRotU64 [ASM] ARShiftU64 [ASM] RShiftU64 [ASM] LShiftU64 [ASM] EnableCache [ASM] DisableCache [ASM] RdRand [CC] DivS64x64Remainder [ASM] InternalSwitchStack [CC] Non-existing [CC] Unaligned [CC] X86WriteIdtr [CC] X86WriteGdtr [CC] X86Thunk [CC] X86ReadIdtr [CC] X86ReadGdtr [CC] X86Msr [CC] X86GetInterruptState [CC] X86FxSave [CC] X86FxRestore [CC] X86EnablePaging64 [CC] X86EnablePaging32 [CC] X86DisablePaging64 [CC] X86DisablePaging32 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning same member name (ARShiftU64.obj) in output file used for input files: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/Ia32/ARShiftU64.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/ARShiftU64.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 (DivS64x64Remainder.obj) in output file used for input files: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/Ia32/DivS64x64Remainder.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/DivS64x64Remainder.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 (DivU64x32.obj) in output file used for input files: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/Ia32/DivU64x32.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/DivU64x32.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 (DivU64x32Remainder.obj) in output file used for input files: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/Ia32/DivU64x32Remainder.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/DivU64x32Remainder.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 (DivU64x64Remainder.obj) in output file used for input files: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/DivU64x64Remainder.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/Ia32/DivU64x64Remainder.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 (LRotU64.obj) in output file used for input files: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/LRotU64.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/Ia32/LRotU64.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 (LShiftU64.obj) in output file used for input files: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/LShiftU64.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/Ia32/LShiftU64.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 (LongJump.obj) in output file used for input files: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/Ia32/LongJump.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/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 (ModU64x32.obj) in output file used for input files: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/ModU64x32.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/Ia32/ModU64x32.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 (MultU64x32.obj) in output file used for input files: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/MultU64x32.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/Ia32/MultU64x32.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 (MultU64x64.obj) in output file used for input files: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/Ia32/MultU64x64.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/MultU64x64.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 (RRotU64.obj) in output file used for input files: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/Ia32/RRotU64.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/RRotU64.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 (RShiftU64.obj) in output file used for input files: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/RShiftU64.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/Ia32/RShiftU64.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/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/SetJump.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/Ia32/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 (SwapBytes64.obj) in output file used for input files: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/Ia32/SwapBytes64.obj and: /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib/OUTPUT/SwapBytes64.obj (due to use of basename, truncation, blank padding or duplicate input files) [SLINK] BaseLib Building ... /Users/Micky1979/src/edk2/Clover/OsxDxeIpl/DxeIpl.inf [IA32] Building ... /Users/Micky1979/src/edk2/Clover/OsxDxeCore/DxeMain.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/PCD/Dxe/Pcd.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf [IA32] Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf [IA32] [CC] DxeInit [CC] WatchdogTimer [CC] Crc32 [CC] Pcd [CC] AutoGen [SLINK] WatchdogTimer [CC] CoreSectionExtraction [CC] Runtime [DLINK1] WatchdogTimer [CC] LegacyTable [MTOC] WatchdogTimer [GENFW] WatchdogTimer [CC] AutoGen Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf [IA32] [SLINK] RuntimeDxe [CC] HobGeneration [CC] MonotonicCounter [CC] Service [DLINK1] RuntimeDxe [MTOC] RuntimeDxe [CC] AutoGen [CC] Debug [SLINK] MonotonicCounterRuntimeDxe [CC] Image [GENFW] RuntimeDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf [IA32] [DLINK1] MonotonicCounterRuntimeDxe [CC] AutoGen [MTOC] MonotonicCounterRuntimeDxe [SLINK] PcdDxe [CC] EnterDxeCore [GENFW] MonotonicCounterRuntimeDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf [IA32] [CC] InitVariable [CC] DebugImageInfo [CC] Paging [CC] Stall [CC] AutoGen [SLINK] DxeIpl [CC] FtwMisc [DLINK1] DxeIpl [CC] EmuVariable [MTOC] DxeIpl [CC] SetWatchdogTimer [GENFW] DxeIpl Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf [IA32] [CC] AutoGen [SLINK] EmuVariableRuntimeDxe [CC] UpdateWorkingBlock [CC] Reclaim [CC] InstallConfigurationTable [CC] FaultTolerantWrite [CC] Library [CC] FaultTolerantWriteDxe [CC] AutoGen [SLINK] FaultTolerantWriteDxe [DLINK1] PcdDxe [MTOC] PcdDxe [CC] DriverSupport [DLINK1] EmuVariableRuntimeDxe [MTOC] EmuVariableRuntimeDxe [GENFW] PcdDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf [IA32] [GENFW] EmuVariableRuntimeDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf [IA32] [DLINK1] FaultTolerantWriteDxe [MTOC] FaultTolerantWriteDxe [CC] Notify [GENFW] FaultTolerantWriteDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf [IA32] [CC] CapsuleService [CC] NullMemoryTest [CC] SaveLongModeContext [CC] SecurityStub [CC] AutoGen [SLINK] NullMemoryTestDxe [CC] Locate [CC] AutoGen [CC] AutoGen [SLINK] CapsuleRuntimeDxe [SLINK] SecurityStubDxe [DLINK1] NullMemoryTestDxe [MTOC] NullMemoryTestDxe [GENFW] NullMemoryTestDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf [IA32] [DLINK1] CapsuleRuntimeDxe [MTOC] CapsuleRuntimeDxe [CC] Variable [GENFW] CapsuleRuntimeDxe [DLINK1] SecurityStubDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf [IA32] [MTOC] SecurityStubDxe [CC] ComponentName [GENFW] SecurityStubDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf [IA32] [CC] Handle [CC] VariableDxe [CC] ConPlatform [CC] HiiDatabaseEntry [CC] ConSplitterGraphics [CC] AutoGen [CC] Measurement [SLINK] ConPlatformDxe [CC] ComponentName [CC] TcgMorLockDxe [CC] VarCheck [CC] Gcd [CC] Image [CC] VariableExLib [DLINK1] ConPlatformDxe [CC] AutoGen [CC] Pool [MTOC] ConPlatformDxe [SLINK] VariableRuntimeDxe [GENFW] ConPlatformDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf [IA32] [CC] ConSplitter [CC] Page [CC] AutoGen [SLINK] ConSplitterDxe [CC] MemData [CC] FwVolBlock [CC] FwVolWrite [CC] ConfigRouting [CC] FwVolRead [CC] Setup [CC] FwVolAttrib [CC] String [CC] Ffs [DLINK1] ConSplitterDxe [CC] FwVol [MTOC] ConSplitterDxe [CC] IfrParse [GENFW] ConSplitterDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf [IA32] [CC] Database [CC] Tpl [CC] Timer [DLINK1] VariableRuntimeDxe [MTOC] VariableRuntimeDxe [GENFW] VariableRuntimeDxe Building ... /Users/Micky1979/src/edk2/Clover/GraphicsConsoleDxe/GraphicsConsoleDxe.inf [IA32] [CC] Event [CC] ComponentName [CC] Font [CC] LaffStd [CC] Dependency [CC] Expression [CC] Dispatcher [CC] GraphicsConsole [CC] AutoGen [SLINK] GraphicsConsoleDxe [CC] DxeProtocolNotify [CC] FormDisplay [CC] ConfigKeywordHandler [CC] AutoGen [SLINK] HiiDatabase [CC] Presentation [CC] DxeMain [CC] AutoGen [CC] AutoGen [CC] ProcessOptions [SLINK] SetupBrowser [SLINK] DxeCore [DLINK1] GraphicsConsoleDxe [MTOC] GraphicsConsoleDxe [CC] InputHandler [GENFW] GraphicsConsoleDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf [IA32] [CC] AutoGen [CC] DevicePath [SLINK] DisplayEngine [CC] AutoGen [SLINK] DevicePathDxe [DLINK1] DevicePathDxe [MTOC] DevicePathDxe [GENFW] DevicePathDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf [IA32] [CC] SmbiosDxe [CC] AutoGen [SLINK] SmbiosDxe [DLINK1] DxeCore [MTOC] DxeCore [GENFW] DxeCore Building ... /Users/Micky1979/src/edk2/DuetPkg/SmbiosGenDxe/SmbiosGen.inf [IA32] [DLINK1] SmbiosDxe [MTOC] SmbiosDxe [GENFW] SmbiosDxe Building ... /Users/Micky1979/src/edk2/Clover/OsxEfiLdr/EfiLdr.inf [IA32] [DLINK1] DisplayEngine [MTOC] DisplayEngine [GENFW] DisplayEngine Building ... /Users/Micky1979/src/edk2/Clover/OsxBdsDxe/BdsDxe.inf [IA32] [CC] SmbiosGen [CC] EfiLoader [CC] AutoGen [SLINK] SmbiosGenDxe [CC] Debug [CC] HwErrRecSupport [VFR] BdsDxe [CC] PeLoader [CC] DeviceManagerVfr [VFR] BdsDxe [CC] Support [CC] DriverHealthVfr [CC] AutoGen [SLINK] EfiLoader [DLINK1] SmbiosGenDxe [MTOC] SmbiosGenDxe [DLINK1] SetupBrowser [GENFW] SmbiosGenDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/EbcDxe/EbcDxe.inf [IA32] [MTOC] SetupBrowser [GENFW] SetupBrowser Building ... /Users/Micky1979/src/edk2/Clover/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf [IA32] [CC] CpuIo2Dxe [CC] DeviceManager [VFR] BdsDxe [CC] AutoGen [SLINK] CpuIo2Dxe [CC] EbcExecute [CC] BootManagerVfr [DLINK1] CpuIo2Dxe [MTOC] CpuIo2Dxe [GENFW] CpuIo2Dxe Building ... /Users/Micky1979/src/edk2/Clover/CpuDxe/Cpu.inf [IA32] [CC] EbcInt [CC] BootManager [VFR] BdsDxe [CC] EbcSupport [CC] FE [DLINK1] EfiLoader [MTOC] EfiLoader [GENFW] EfiLoader Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf [IA32] [CC] FileExplorer [NASM] CpuInterrupt [ASM] EbcLowLevel [CC] 8259 [CC] AutoGen [CC] AutoGen [SLINK] EbcDxe [SLINK] Legacy8259 [DLINK1] HiiDatabase [CC] Cpu [MTOC] HiiDatabase [GENFW] HiiDatabase Building ... /Users/Micky1979/src/edk2/Clover/AcpiReset/Reset.inf [IA32] [DLINK1] Legacy8259 [MTOC] Legacy8259 [CC] BootMaint [CC] AutoGen [SLINK] Cpu [GENFW] Legacy8259 Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Metronome/Metronome.inf [IA32] [CC] Reset [CC] Metronome [CC] BBSsupport [CC] AutoGen [SLINK] AcpiReset [CC] AutoGen [SLINK] Metronome [DLINK1] Cpu [MTOC] Cpu [DLINK1] AcpiReset [DLINK1] Metronome [GENFW] Cpu Building ... /Users/Micky1979/src/edk2/Clover/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf [IA32] [MTOC] Metronome [MTOC] AcpiReset [CC] UpdatePage [GENFW] Metronome Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/8254TimerDxe/8254Timer.inf [IA32] [GENFW] AcpiReset Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/HpetTimerDxe/HpetTimerDxe.inf [IA32] [CC] PcRtcEntry [CC] Timer [CC] Variable [CC] AutoGen [CC] HpetTimer [DLINK1] EbcDxe [SLINK] Timer [MTOC] EbcDxe [CC] PcRtc [GENFW] EbcDxe Building ... /Users/Micky1979/src/edk2/Clover/PciRootBridgeDxe/PciRootBridge.inf [IA32] [DLINK1] Timer [MTOC] Timer [CC] AutoGen [SLINK] HpetTimerDxe [GENFW] Timer Building ... /Users/Micky1979/src/edk2/Clover/OsxPciBusNoEnumerationDxe/PciBusNoEnumeration.inf [IA32] [CC] AutoGen [CC] Data [SLINK] PcRtc [CC] PciPowerManagement [DLINK1] HpetTimerDxe [MTOC] HpetTimerDxe [CC] PcatPciRootBridge [GENFW] HpetTimerDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf [IA32] [CC] PciRomTable [CC] PcatPciRootBridgeDevicePath [CC] BootOption [CC] PciDriverOverride [DLINK1] PcRtc [MTOC] PcRtc [GENFW] PcRtc Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf [IA32] [CC] BmLib [CC] PcatPciRootBridgeIo [CC] NvmExpressBlockIo [VFR] BdsDxe [CC] PciOptionRomSupport [CC] Bm [CC] ComponentName [CC] DataHub [CC] PciEnumerator [CC] DeviceIo [CC] AutoGen [SLINK] DataHubDxe [CC] PcatIo [CC] NvmExpress [CC] Hotkey [CC] PciEnumeratorSupport [DLINK1] DataHubDxe [CC] AutoGen [MTOC] DataHubDxe [SLINK] PcatPciRootBridge [GENFW] DataHubDxe Building ... /Users/Micky1979/src/edk2/Clover/DriverOverride/DriverOverride.inf [IA32] [CC] NvmExpressDiskInfo [CC] PciCommand [CC] DriverOverride [CC] MemoryTest [CC] AutoGen [CC] ComponentName [SLINK] DriverOverride [CC] NvmExpressHci [DLINK1] DriverOverride [MTOC] DriverOverride [CC] Capsules [GENFW] DriverOverride Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxHfs.inf [IA32] [CC] NvmExpressPassthru [CC] PciDeviceSupport [CC] String [CC] AutoGen [SLINK] NvmExpressDxe [CC] PciBus [CC] Language [VFR] BdsDxe [CC] PciIo [CC] fsw_hfs [CC] FrontPageVfr [CC] AutoGen [SLINK] PciBusNoEnumerationDxe [CC] fsw_core [DLINK1] PcatPciRootBridge [MTOC] PcatPciRootBridge [CC] FrontPage [CC] fsw_efi_lib [GENFW] PcatPciRootBridge Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxIso9660.inf [IA32] [CC] BdsEntry [CC] fsw_efi [CC] fsw_iso9660 [CC] AutoGen [SLINK] BdsDxe [CC] fsw_lib [CC] fsw_core [CC] AutoGen [SLINK] VBoxHfs [CC] fsw_efi_lib [CC] fsw_efi [DLINK1] NvmExpressDxe [MTOC] NvmExpressDxe [DLINK1] PciBusNoEnumerationDxe [MTOC] PciBusNoEnumerationDxe [GENFW] NvmExpressDxe Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxExt2.inf [IA32] [GENFW] PciBusNoEnumerationDxe Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxExt4.inf [IA32] [CC] fsw_lib [CC] AutoGen [CC] fsw_ext2 [SLINK] VBoxIso9600 [CC] fsw_ext4 [CC] fsw_core [CC] fsw_core [CC] fsw_efi_lib [CC] fsw_efi_lib [CC] fsw_efi [CC] fsw_efi [DLINK1] VBoxHfs [CC] fsw_lib [MTOC] VBoxHfs [CC] fsw_lib [GENFW] VBoxHfs Building ... /Users/Micky1979/src/edk2/Clover/VBoxFsDxe/VBoxReiserFS.inf [IA32] [CC] AutoGen [SLINK] VBoxExt2 [CC] AutoGen [DLINK1] VBoxIso9600 [SLINK] VBoxExt4 [MTOC] VBoxIso9600 [GENFW] VBoxIso9600 Building ... /Users/Micky1979/src/edk2/Clover/FatPkg/EnhancedFatDxe/Fat.inf [IA32] [CC] fsw_reiserfs [CC] DirectoryCache [CC] DiskCache [CC] fsw_core [CC] FileName [CC] fsw_efi_lib [CC] Hash [CC] fsw_efi [DLINK1] VBoxExt2 [MTOC] VBoxExt2 [CC] DirectoryManage [DLINK1] VBoxExt4 [MTOC] VBoxExt4 [GENFW] VBoxExt2 Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/EXFAT.inf [IA32] [GENFW] VBoxExt4 Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/HFSPLUS.inf [IA32] [CC] ComponentName [CC] fsw_lib [CC] driver [CC] ReadWrite [CC] AutoGen [CC] driver [SLINK] VBoxReiserFS [CC] OpenVolume [CC] Open [CC] file [CC] file [CC] grub_driver [CC] Misc [CC] grub_driver [CC] Init [CC] grub_file [CC] grub_file [CC] Info [CC] grub [CC] grub [CC] logging [CC] FileSpace [CC] logging [CC] missing [CC] Flush [CC] missing [CC] path [CC] path [CC] Fat [CC] Delete [CC] utf8 [CC] utf8 [CC] Data [DLINK1] VBoxReiserFS [MTOC] VBoxReiserFS [GENFW] VBoxReiserFS Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/ISO9660.inf [IA32] [CC] device [CC] UnicodeCollation [CC] err [CC] AutoGen [SLINK] Fat [CC] driver [CC] file [CC] misc [CC] grub_driver [CC] list [CC] grub_file [CC] fshelp [CC] grub [CC] gzio [CC] logging [CC] exfat [CC] missing [CC] AutoGen [CC] device [SLINK] GrubEXFAT [CC] path [CC] err [CC] utf8 [CC] misc [CC] device [CC] list [DLINK1] BdsDxe [CC] err [MTOC] BdsDxe [GENFW] BdsDxe Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/NTFS.inf [IA32] [CC] fshelp [CC] driver [CC] misc [CC] hfspluscomp [CC] list [DLINK1] Fat [MTOC] Fat [CC] file [GENFW] Fat Building ... /Users/Micky1979/src/edk2/Clover/GrubFS/src/UDF.inf [IA32] [CC] fshelp [CC] grub_driver [CC] driver [CC] grub_file [CC] hfsplus [CC] AutoGen [SLINK] GrubHFSPLUS [CC] file [CC] grub [CC] iso9660 [CC] logging [CC] grub_driver [CC] AutoGen [CC] missing [SLINK] GrubISO9660 [CC] grub_file [CC] path [CC] grub [CC] utf8 [CC] logging [CC] device [CC] missing [CC] err [CC] path [DLINK1] GrubEXFAT [MTOC] GrubEXFAT [GENFW] GrubEXFAT Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Pci/VgaMiniPortDxe/VgaMiniPortDxe.inf [IA32] [CC] utf8 [CC] misc [CC] device [CC] ComponentName [CC] list [CC] err [CC] VgaMiniPort [CC] fshelp [CC] AutoGen [SLINK] VgaMiniPort [CC] misc [DLINK1] VgaMiniPort [MTOC] VgaMiniPort [CC] ntfscomp [CC] list [GENFW] VgaMiniPort Building ... /Users/Micky1979/src/edk2/Clover/BiosVideo/BiosVideo.inf [IA32] [CC] fshelp [CC] ntfs [CC] udf [CC] AutoGen [SLINK] GrubNTFS [CC] AutoGen [SLINK] GrubUDF [CC] BiosVideoNew [CC] ComponentName [CC] LegacyBiosThunk [DLINK1] GrubISO9660 [MTOC] GrubISO9660 [CC] AutoGen [GENFW] GrubISO9660 Building ... /Users/Micky1979/src/edk2/Clover/LegacyBios/VideoDxe/VideoDxe.inf [IA32] [SLINK] BiosVideo [DLINK1] GrubHFSPLUS [MTOC] GrubHFSPLUS [GENFW] GrubHFSPLUS Building ... /Users/Micky1979/src/edk2/Clover/SataControllerDxe/SataControllerDxe.inf [IA32] [CC] ComponentName [CC] BiosVideo [CC] SataController [CC] ComponentName [CC] AutoGen [SLINK] SataController [CC] AutoGen [SLINK] CsmVideoDxe [DLINK1] SataController [MTOC] SataController [GENFW] SataController Building ... /Users/Micky1979/src/edk2/Clover/AtaAtapi/AtaAtapiPassThru.inf [IA32] [DLINK1] BiosVideo [MTOC] BiosVideo [GENFW] BiosVideo Building ... /Users/Micky1979/src/edk2/Clover/AtaBus/AtaBusDxe.inf [IA32] [CC] AtaAtapiPassThru [CC] AtaBus [CC] AtaPassThruExecute [CC] AhciMode [DLINK1] GrubUDF [MTOC] GrubUDF [GENFW] GrubUDF Building ... /Users/Micky1979/src/edk2/Clover/DVDBus/ScsiBusDxe.inf [IA32] [CC] ComponentName [DLINK1] GrubNTFS [MTOC] GrubNTFS [GENFW] GrubNTFS Building ... /Users/Micky1979/src/edk2/Clover/DVDDisk/ScsiDiskDxe.inf [IA32] [CC] AutoGen [SLINK] AtaBusDxe [CC] ComponentName [CC] ComponentName [CC] ScsiBus [CC] AutoGen [SLINK] ScsiBus [CC] IdeMode [DLINK1] CsmVideoDxe [MTOC] CsmVideoDxe [CC] ComponentName [GENFW] CsmVideoDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf [IA32] [CC] ScsiDisk [CC] AutoGen [SLINK] AtaAtapiPassThruDxe [CC] AutoGen [SLINK] ScsiDisk [CC] UhciSched [DLINK1] ScsiBus [MTOC] ScsiBus [DLINK1] AtaBusDxe [MTOC] AtaBusDxe [CC] UhciDebug [GENFW] ScsiBus Building ... /Users/Micky1979/src/edk2/Clover/OhciDxe/OhciDxe.inf [IA32] [GENFW] AtaBusDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf [IA32] [CC] UhciQueue [CC] UhciReg [CC] EhciUrb [CC] Ohci [CC] UsbHcMem [CC] UsbHcMem [CC] OhciSched [CC] Uhci [CC] EhciSched [CC] ComponentName [DLINK1] ScsiDisk [CC] OhciReg [MTOC] ScsiDisk [CC] EhciDebug [GENFW] ScsiDisk Building ... /Users/Micky1979/src/edk2/Clover/Patches_for_EDK2/XhciDxe/XhciDxe.inf [IA32] [CC] AutoGen [SLINK] UhciDxe [CC] EhciReg [CC] OhciUrb [CC] ComponentName [CC] OhciDebug [CC] ComponentName [CC] Xhci [CC] Ehci [CC] XhciReg [CC] UsbHcMem [CC] AutoGen [SLINK] EhciDxe [CC] AutoGen [SLINK] OhciDxe [DLINK1] AtaAtapiPassThruDxe [MTOC] AtaAtapiPassThruDxe [GENFW] AtaAtapiPassThruDxe Building ... /Users/Micky1979/src/edk2/Clover/Patches_for_EDK2/UsbBusDxe/UsbBusDxe.inf [IA32] [DLINK1] UhciDxe [MTOC] UhciDxe [GENFW] UhciDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf [IA32] [CC] UsbDesc [CC] EfiKey [CC] UsbEnumer [CC] XhciSched [CC] UsbBus [CC] UsbHcMem [CC] KeyBoard [DLINK1] EhciDxe [MTOC] EhciDxe [CC] ComponentName [GENFW] EhciDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf [IA32] [CC] ComponentName [CC] UsbHub [CC] AutoGen [CC] AutoGen [SLINK] XhciDxe [CC] ComponentName [SLINK] UsbKbDxe [CC] UsbMassBot [CC] ComponentName [CC] UsbUtility [DLINK1] OhciDxe [CC] AutoGen [MTOC] OhciDxe [CC] UsbMassImpl [SLINK] UsbBusDxe [GENFW] OhciDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouseDxe.inf [IA32] [CC] UsbMassBoot [CC] ComponentName [CC] UsbMassCbi [CC] MouseHid [CC] UsbMassDiskInfo [CC] UsbMouse [CC] AutoGen [SLINK] UsbMassStorageDxe [DLINK1] UsbKbDxe [MTOC] UsbKbDxe [CC] AutoGen [SLINK] UsbMouseDxe [GENFW] UsbKbDxe Building ... /Users/Micky1979/src/edk2/PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf [IA32] [CC] PcatIsaAcpi [CC] IsaAcpi [DLINK1] UsbMouseDxe [MTOC] UsbMouseDxe [GENFW] UsbMouseDxe Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf [IA32] [CC] ComponentName [CC] AutoGen [SLINK] IsaAcpi [CC] ComponentName [CC] IsaIo [DLINK1] UsbBusDxe [MTOC] UsbBusDxe [GENFW] UsbBusDxe Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf [IA32] [DLINK1] IsaAcpi [MTOC] IsaAcpi [GENFW] IsaAcpi Building ... /Users/Micky1979/src/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/Ps2MouseAbsolutePointerDxe.inf [IA32] [CC] IsaBus [CC] ComponentName [CC] AutoGen [SLINK] IsaBusDxe [DLINK1] UsbMassStorageDxe [CC] ComponentName [MTOC] UsbMassStorageDxe [GENFW] UsbMassStorageDxe Building ... /Users/Micky1979/src/edk2/Clover/Ps2MouseDxe/Ps2MouseDxe.inf [IA32] [CC] CommPs2 [CC] ComponentName [CC] Ps2KbdCtrller [CC] Ps2MouseAbsolutePointer [CC] Ps2KbdTextIn [CC] CommPs2 [CC] AutoGen [DLINK1] IsaBusDxe [SLINK] Ps2MouseAbsolutePointerDxe [MTOC] IsaBusDxe [GENFW] IsaBusDxe Building ... /Users/Micky1979/src/edk2/Clover/OsxAcpiTableDxe/AcpiTableDxe.inf [IA32] [CC] Ps2Keyboard [CC] Ps2Mouse [CC] AutoGen [SLINK] Ps2KeyboardDxe [CC] AutoGen [SLINK] Ps2MouseDxe [DLINK1] Ps2MouseAbsolutePointerDxe [MTOC] Ps2MouseAbsolutePointerDxe [CC] AcpiTableProtocol [GENFW] Ps2MouseAbsolutePointerDxe Building ... /Users/Micky1979/src/edk2/Clover/OsxAcpiPlatformDxe/AcpiPlatformDxe.inf [IA32] [DLINK1] XhciDxe [MTOC] XhciDxe [DLINK1] Ps2MouseDxe [MTOC] Ps2MouseDxe [GENFW] XhciDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf [IA32] [CC] AcpiTable [GENFW] Ps2MouseDxe Building ... /Users/Micky1979/src/edk2/MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf [IA32] [CC] AcpiPlatform [CC] AutoGen [CC] ComponentName [SLINK] AcpiTableDxe [CC] AutoGen [SLINK] AcpiPlatform [CC] UnicodeCollationEng [CC] AutoGen [SLINK] EnglishDxe [DLINK1] Ps2KeyboardDxe [CC] DiskIo [MTOC] Ps2KeyboardDxe [GENFW] Ps2KeyboardDxe Building ... /Users/Micky1979/src/edk2/Clover/PartitionDxe/PartitionDxe.inf [IA32] [DLINK1] EnglishDxe [CC] AutoGen [MTOC] EnglishDxe [SLINK] DiskIoDxe [GENFW] EnglishDxe Building ... /Users/Micky1979/src/edk2/Clover/BiosKeyboard/KeyboardDxe.inf [IA32] [CC] ComponentName [DLINK1] AcpiPlatform [MTOC] AcpiPlatform [GENFW] AcpiPlatform Building ... /Users/Micky1979/src/edk2/Clover/LegacyBios/Region2Dxe/LegacyRegion2Dxe.inf [IA32] [CC] ComponentName [CC] Mbr [DLINK1] AcpiTableDxe [MTOC] AcpiTableDxe [GENFW] AcpiTableDxe Building ... /Users/Micky1979/src/edk2/Clover/FSInject/FSInject.inf [IA32] [CC] LegacyRegion2 [CC] Gpt [DLINK1] DiskIoDxe [MTOC] DiskIoDxe [CC] AutoGen [SLINK] LegacyRegion2Dxe [GENFW] DiskIoDxe Building ... /Users/Micky1979/src/edk2/Clover/MsgLog/MsgLog.inf [IA32] [CC] ElTorito [CC] BiosKeyboard [CC] MsgLog [CC] Apple [CC] AutoGen [CC] LegacyBiosThunk [SLINK] MsgLog [CC] FSInject [CC] AutoGen [DLINK1] MsgLog [SLINK] KeyboardDxe [MTOC] MsgLog [CC] Partition [CC] Test [GENFW] MsgLog Building ... /Users/Micky1979/src/edk2/Clover/DumpUefiCalls/DumpUefiCalls.inf [IA32] [CC] AutoGen [CC] AutoGen [SLINK] FSInject [SLINK] PartitionDxe [CC] DumpUefiCalls [DLINK1] LegacyRegion2Dxe [MTOC] LegacyRegion2Dxe [CC] Lib [GENFW] LegacyRegion2Dxe Building ... /Users/Micky1979/src/edk2/Clover/OsxFatBinaryDrv/OsxFatBinaryDrv.inf [IA32] [DLINK1] KeyboardDxe [MTOC] KeyboardDxe [GENFW] KeyboardDxe Building ... /Users/Micky1979/src/edk2/Clover/EmuVariableUefi/EmuVariableRuntimeDxe.inf [IA32] [CC] BootServices [CC] OsxFatBinaryDrv [CC] AutoGen [CC] RuntimeServices [CC] InitVariable [SLINK] OsxFatBinaryDrv [CC] Log [CC] MemLog [DLINK1] FSInject [DLINK1] OsxFatBinaryDrv [CC] EmuVariable [MTOC] FSInject [MTOC] OsxFatBinaryDrv [GENFW] FSInject [GENFW] OsxFatBinaryDrv Building ... /Users/Micky1979/src/edk2/Clover/AppleImageCodec/AppleImageCodec.inf [IA32] Building ... /Users/Micky1979/src/edk2/Clover/bdmesg_efi/bdmesg.inf [IA32] [CC] FileLib [CC] AutoGen [SLINK] EmuVariableUefi [CC] AppleImageCodec [CC] DataHub [CC] bdmesg [CC] AutoGen [CC] Fs [SLINK] bdmesg [DLINK1] PartitionDxe [MTOC] PartitionDxe [CC] AutoGen [SLINK] DumpUefiCalls [GENFW] PartitionDxe Building ... /Users/Micky1979/src/edk2/Clover/rEFIt_UEFI/refit.inf [IA32] [CC] BdsConnect [CC] picopng [DLINK1] EmuVariableUefi [MTOC] EmuVariableUefi [GENFW] EmuVariableUefi [CC] AutoGen [SLINK] AppleImageCodec [DLINK1] bdmesg [MTOC] bdmesg [GENFW] bdmesg [DLINK1] DumpUefiCalls [MTOC] DumpUefiCalls [GENFW] DumpUefiCalls [CC] main [DLINK1] AppleImageCodec [MTOC] AppleImageCodec [CC] icns [GENFW] AppleImageCodec [CC] lib [CC] menu [CC] screen [CC] IO [CC] common [CC] legacy [CC] loader [CC] tool [CC] secureboot [CC] securehash [CC] securemenu [CC] securevars [CC] bootscreen [CC] lockedgraphics [CC] BmLib [CC] image [CC] load_bmp [CC] load_icns [CC] libscreen [CC] lodepng [CC] text [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] gma [CC] guid [CC] Injectors [CC] LegacyBiosThunk [CC] LegacyBoot [CC] nvidia [CC] picopng [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] AutoGen [SLINK] CLOVERIA32 [DLINK1] CLOVERIA32 [MTOC] CLOVERIA32 [GENFW] CLOVERIA32 Generating DUETEFIMAINFVIA32 FV ######################################## ######################################## ######################################## ################## GUID cross reference file can be found at /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/FV/Guid.xref FV Space Information DUETEFIMAINFVIA32 [30%Full] 2752512 total, 843144 used, 1909368 free - Done - Build end time: 20:45:51, Aug.26 2016 Build total time: 00:01:10 Compressing DUETEFIMainFv.FV ... Encoding Compressing DxeCore.efi ... Encoding Compressing DxeIpl.efi ... Encoding Generate Loader Image ... Created /Users/Micky1979/src/edk2/Build/Clover/RELEASE_XCODE5/FV/Efildr32 -> boot3 Changing byte at 0xa9 of boot3 to show 3 as init message: 1+0 records in 1+0 records out 1 bytes transferred in 0.000035 secs (28533 bytes/sec) -> BOOTIA32.efi -> CLOVERIA32.efi Copy Mandatory drivers: -> FSInject-32.efi -> FSInject-32.efi -> OsxFatBinaryDrv-32.efi -> VBoxHfs-32.efi Copy Optional drivers: -> VBoxIso9600-32.efi -> VBoxExt2-32.efi -> VBoxExt4-32.efi -> GrubEXFAT-32.efi -> GrubISO9660-32.efi -> GrubNTFS-32.efi -> GrubUDF-32.efi -> Ps2KeyboardDxe-32.efi -> Ps2MouseAbsolutePointerDxe-32.efi -> Ps2MouseDxe-32.efi -> UsbMouseDxe-32.efi -> XhciDxe-32.efi Copy Applications: -> bdmesg-32.efi Done! Generating BootSectors make: Nothing to be done for `all'. Done! =============================================================================== MAKE PKG <---------------------------------------------------- ========= Translating Resources ======== /Users/Micky1979/src/edk2/Clover/CloverPackage/package/../../../../opt/local Updating 'en' strings file for CloverUpdater... done Updating 'en' strings file for Clover Preference Panel... done Updating strings file for Clover Preference Panel... done Discard ../sym/Resources/Clover/Resources/sv.lproj/Welcome.html (0 of 10 strings; only 0% translated; need 80%). Discard ../sym/Resources/Clover/Resources/sv.lproj/Description.html (0 of 26 strings; only 0% translated; need 80%). Discard ../sym/Resources/Clover/Resources/sv.lproj/Conclusion.html (0 of 4 strings; only 0% translated; need 80%). Discard ../sym/Resources/Clover/Resources/sv.lproj/Localizable.strings (0 of 116 strings; only 0% translated; need 74%). Discard ../CloverUpdater/src/sv.lproj/CloverUpdater.strings (0 of 12 strings; only 0% translated; need 74%). Discard ../CloverPrefpane/src/sv.lproj/CloverPrefpane.strings (0 of 39 strings; only 0% translated; need 74%). Building CloverUpdater application... [XCODE] Building CloverPrefpane preference... [XCODE] ================= Making all in fdisk440 ================= [MKDIR] /Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440 [CC32] auto.c [CC32] cmd.c [CC32] disk.c [CC32] fdisk.c [CC32] getrawpartition.c [CC32] mbr.c [CC32] misc.c [CC32] opendev.c [CC32] part.c [CC32] user.c [CC64] auto.c [CC64] cmd.c [CC64] disk.c [CC64] fdisk.c [CC64] getrawpartition.c [CC64] mbr.c [CC64] misc.c [CC64] opendev.c [CC64] part.c [CC64] user.c [LD32] fdisk440_32 ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/auto.o32) was built for newer OSX version (10.11) than being linked (10.5) ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/cmd.o32) was built for newer OSX version (10.11) than being linked (10.5) ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/disk.o32) was built for newer OSX version (10.11) than being linked (10.5) ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/fdisk.o32) was built for newer OSX version (10.11) than being linked (10.5) ld: warning: ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/getrawpartition.o32) was built for newer OSX version (10.11) than being linked (10.5)ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/misc.o32) was built for newer OSX version (10.11) than being linked (10.5) object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/mbr.o32) was built for newer OSX version (10.11) than being linked (10.5) ld: warning: ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/opendev.o32) was built for newer OSX version (10.11) than being linked (10.5)object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/part.o32) was built for newer OSX version (10.11) than being linked (10.5) ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/user.o32) was built for newer OSX version (10.11) than being linked (10.5) [LD64] fdisk440_64 ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/auto.o64) was built for newer OSX version (10.11) than being linked (10.5) ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/cmd.o64) was built for newer OSX version (10.11) than being linked (10.5) ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/disk.o64) was built for newer OSX version (10.11) than being linked (10.5)ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/fdisk.o64) was built for newer OSX version (10.11) than being linked (10.5)ld: warning: ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/getrawpartition.o64) was built for newer OSX version (10.11) than being linked (10.5)object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/mbr.o64) was built for newer OSX version (10.11) than being linked (10.5) ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/misc.o64) was built for newer OSX version (10.11) than being linked (10.5) ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/opendev.o64) was built for newer OSX version (10.11) than being linked (10.5) ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/part.o64) was built for newer OSX version (10.11) than being linked (10.5) ld: warning: object file (/Users/Micky1979/src/edk2/Clover/CloverPackage/sym/build/fdisk440/user.o64) was built for newer OSX version (10.11) than being linked (10.5) [LIPO] /Users/Micky1979/src/edk2/Clover/CloverPackage/sym/utils/fdisk440 ================= Making all in boot1-install ================= [XCODE] boot1-install ================= Making all in partutil ================= [XCODE] partutil ================= Making all in bdmesg ================= [XCODE] bdmesg ================= Making all in clover-genconfig ================= [XCODE] clover-genconfig ---------------------------------- Building Clover Install Package ---------------------------------- ====================== Preinstall ====================== [BUILD] Pre ===================== Installation ===================== [BUILD] UEFI.only ================== Target ESP ========================== [BUILD] Target.ESP =================== BiosBoot =========================== [BUILD] BiosBoot ===================== Utils ============================ [BUILD] Utils ===================== EFI folder ======================= [BUILD] EFIFolder ===================== BootLoaders ====================== [BUILD] AltBoot [BUILD] bootNo [BUILD] boot0af [BUILD] boot0ss ====================== CloverEFI ======================= [BUILD] cloverEFI.32 [BUILD] cloverEFI.64.sata [BUILD] cloverEFI.64.blockio [BUILD] cloverEFI.64.blockio2 ======================== Themes ======================== [BUILD] applestyle [BUILD] BGM [BUILD] black_green [BUILD] bluemac [BUILD] bootcamp [BUILD] chrome [BUILD] iclover [BUILD] magnifico [BUILD] metal [BUILD] orange [BUILD] os_box [BUILD] os_one [BUILD] Shield [BUILD] Space [BUILD] steampunkblack [BUILD] thinkpad ================= drivers32 mandatory ================== [BUILD] FSInject-32 ===================== drivers32 ======================== [BUILD] GrubEXFAT-32 [BUILD] GrubISO9660-32 [BUILD] GrubNTFS-32 [BUILD] GrubUDF-32 [BUILD] Ps2KeyboardDxe-32 [BUILD] Ps2MouseAbsolutePointerDxe-32 [BUILD] Ps2MouseDxe-32 [BUILD] UsbMouseDxe-32 [BUILD] VBoxExt2-32 [BUILD] VBoxExt4-32 [BUILD] VBoxIso9600-32 [BUILD] XhciDxe-32 =============== drivers32 UEFI mandatory =============== [BUILD] FSInject-32.UEFI [BUILD] OsxFatBinaryDrv-32.UEFI [BUILD] VBoxHfs-32.UEFI ================= drivers64 mandatory ================== [BUILD] FSInject-64 ===================== drivers64 ======================== [BUILD] GrubEXFAT-64 [BUILD] GrubISO9660-64 [BUILD] GrubNTFS-64 [BUILD] GrubUDF-64 [BUILD] NvmExpressDxe-64 [BUILD] Ps2MouseDxe-64 [BUILD] UsbMouseDxe-64 [BUILD] VBoxExt2-64 [BUILD] VBoxExt4-64 [BUILD] VBoxIso9600-64 [BUILD] XhciDxe-64 =============== drivers64 UEFI mandatory =============== [BUILD] FSInject-64.UEFI [BUILD] OsxFatBinaryDrv-64.UEFI [BUILD] VBoxHfs-64.UEFI =================== drivers64 UEFI ===================== [BUILD] CsmVideoDxe-64 [BUILD] DataHubDxe-64 [BUILD] EmuVariableUefi-64 [BUILD] OsxAptioFix2Drv-64 [BUILD] OsxAptioFixDrv-64 [BUILD] OsxLowMemFixDrv-64 [BUILD] PartitionDxe-64 ===================== RC Scripts ======================= [BUILD] rc.scripts.on.target [BUILD] rc.scripts.on.all.volumes [BUILD] rc.scripts.core ================= Optional RC Scripts ================== [BUILD] disable_sleep_proxy_client ==================== Clover Prefpane =================== [BUILD] CloverPrefpane ================= Post ================= [BUILD] Post -------------------------- Building process complete! -------------------------- Build info. =========== Package name: Clover_v2.3k_r3726.pkg MD5: 50868393d8425b1f655d1c63804f006e Version: v2.3k Stage: v2.3k Date/Time: 2016-08-26 20:43:10 Built by: Micky1979 Copyright 2012-2016 adding: Clover_v2.3k_r3726.pkg (deflated 0%) adding: Clover_v2.3k_r3726.pkg.md5 (stored 0%) total 113096 drwxr-xr-x 10 Micky1979 staff 340 Aug 26 20:46 . drwxr-xr-x 14 Micky1979 staff 476 Aug 26 20:46 .. -rw-r--r--@ 1 Micky1979 staff 6148 Aug 26 20:46 .DS_Store -rw-r--r--@ 1 Micky1979 staff 28789094 Aug 26 20:46 Clover_v2.3k_r3726.pkg -rw-r--r-- 1 Micky1979 staff 68 Aug 26 20:46 Clover_v2.3k_r3726.pkg.md5 -rw-r--r-- 1 Micky1979 staff 28720074 Aug 26 20:46 Clover_v2.3k_r3726.zip drwxr-xr-x 3 Micky1979 staff 102 Aug 26 20:45 Resources drwxr-xr-x 7 Micky1979 staff 238 Aug 26 20:46 build drwxr-xr-x 3 Micky1979 staff 102 Aug 26 20:46 package drwxr-xr-x 7 Micky1979 staff 238 Aug 26 20:46 utils =============================================================================== build started at: Fri Aug 26 20:43:10 CEST 2016 finished at Fri Aug 26 20:46:32 CEST 2016 Done! <---------------------------------------------------- logout Saving session... ...copying shared history... ...saving history...truncating history files... ...completed. [Process completed] what is wrong? building boot6 auto rebuild, after an update, menu.c is new. (ok) building boot7 skip everything because same x64 architecture, so only boot file are rebuilt (ok) building boot3 auto rebuild since is a different architecture and menu.c is involved. (ok) Link to comment Share on other sites More sharing options...
Slice Posted August 26, 2016 Share Posted August 26, 2016 iMac:Clover slice$ ./makeall.sh TOOLCHAIN_DIR: /Users/slice/src/edk2/Clover/../../opt/local NASM_PREFIX: /opt/local/bin/ NASM_VER: 2.12.02 Initializing workspace Loading previous configuration from /Users/slice/src/edk2/Conf/BuildEnv.sh WORKSPACE: /Users/slice/src/edk2 EDK_TOOLS_PATH: /Users/slice/src/edk2/BaseTools CONF_PATH: /Users/slice/src/edk2/Conf Running edk2 build for CloverIA32 using the command: build --skip-autogen -D NO_GRUB_DRIVERS_EMBEDDED -D USE_LOW_EBDA -p Clover/Clover.dsc -a IA32 -b RELEASE -t XCODE5 -n 5 Build environment: Darwin-16.0.0-x86_64-i386-64bit Build start time: 20:01:49, Aug.26 2016 WORKSPACE = /Users/slice/src/edk2 ECP_SOURCE = /Users/slice/src/edk2/EdkCompatibilityPkg EDK_SOURCE = /Users/slice/src/edk2/EdkCompatibilityPkg EFI_SOURCE = /Users/slice/src/edk2/EdkCompatibilityPkg EDK_TOOLS_PATH = /Users/slice/src/edk2/BaseTools CONF_PATH = /Users/slice/src/edk2/Conf Architecture(s) = IA32 Build target = RELEASE Toolchain = XCODE5 Active Platform = /Users/slice/src/edk2/Clover/Clover.dsc Flash Image Definition = /Users/slice/src/edk2/Clover/Clover.fdf Processing meta-data ... done! Building ... /Users/slice/src/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf [IA32] Building ... /Users/slice/src/edk2/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf [IA32] Building ... /Users/slice/src/edk2/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf [IA32] make: *** No rule to make target `tbuild'. Stop. build.py... : error 7000: Failed to execute command make tbuild [/Users/slice/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BasePcdLibNull/BasePcdLibNull] Building ... /Users/slice/src/edk2/MdePkg/Library/BaseLib/BaseLib.inf [IA32] make: *** No rule to make target `tbuild'. Stop. build.py... : error 7000: Failed to execute command make tbuild [/Users/slice/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull] build.py... : error 7000: Failed to execute command make tbuild [/Users/slice/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseMemoryLib/BaseMemoryLib] build.py... : error 7000: Failed to execute command make tbuild [/Users/slice/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib] build.py... : error F002: Failed to build module /Users/slice/src/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf [IA32, XCODE5, RELEASE] - Failed - Build end time: 20:01:53, Aug.26 2016 Build total time: 00:00:04 Then I used flag "-fr" and all go. Link to comment Share on other sites More sharing options...
Micky1979 Posted August 26, 2016 Author Share Posted August 26, 2016 Guys, new Clover_Builder.command v3.3 test, here works really well in each conditions. A fresh src folder is reccomended. @Mork vom Ork, little ago I was working to finalize it and test everything, please test it now. Build_Clover.command_v3.3_test.zip iMac:Clover slice$ ./makeall.sh TOOLCHAIN_DIR: /Users/slice/src/edk2/Clover/../../opt/local NASM_PREFIX: /opt/local/bin/ NASM_VER: 2.12.02 Initializing workspace Loading previous configuration from /Users/slice/src/edk2/Conf/BuildEnv.sh WORKSPACE: /Users/slice/src/edk2 EDK_TOOLS_PATH: /Users/slice/src/edk2/BaseTools CONF_PATH: /Users/slice/src/edk2/Conf Running edk2 build for CloverIA32 using the command: build --skip-autogen -D NO_GRUB_DRIVERS_EMBEDDED -D USE_LOW_EBDA -p Clover/Clover.dsc -a IA32 -b RELEASE -t XCODE5 -n 5 Build environment: Darwin-16.0.0-x86_64-i386-64bit Build start time: 20:01:49, Aug.26 2016 WORKSPACE = /Users/slice/src/edk2 ECP_SOURCE = /Users/slice/src/edk2/EdkCompatibilityPkg EDK_SOURCE = /Users/slice/src/edk2/EdkCompatibilityPkg EFI_SOURCE = /Users/slice/src/edk2/EdkCompatibilityPkg EDK_TOOLS_PATH = /Users/slice/src/edk2/BaseTools CONF_PATH = /Users/slice/src/edk2/Conf Architecture(s) = IA32 Build target = RELEASE Toolchain = XCODE5 Active Platform = /Users/slice/src/edk2/Clover/Clover.dsc Flash Image Definition = /Users/slice/src/edk2/Clover/Clover.fdf Processing meta-data ... done! Building ... /Users/slice/src/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf [IA32] Building ... /Users/slice/src/edk2/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf [IA32] Building ... /Users/slice/src/edk2/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf [IA32] make: *** No rule to make target `tbuild'. Stop. build.py... : error 7000: Failed to execute command make tbuild [/Users/slice/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BasePcdLibNull/BasePcdLibNull] Building ... /Users/slice/src/edk2/MdePkg/Library/BaseLib/BaseLib.inf [IA32] make: *** No rule to make target `tbuild'. Stop. build.py... : error 7000: Failed to execute command make tbuild [/Users/slice/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull] build.py... : error 7000: Failed to execute command make tbuild [/Users/slice/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseMemoryLib/BaseMemoryLib] build.py... : error 7000: Failed to execute command make tbuild [/Users/slice/src/edk2/Build/Clover/RELEASE_XCODE5/IA32/MdePkg/Library/BaseLib/BaseLib] build.py... : error F002: Failed to build module /Users/slice/src/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf [IA32, XCODE5, RELEASE] - Failed - Build end time: 20:01:53, Aug.26 2016 Build total time: 00:00:04 Then I used flag "-fr" and all go. So is ok, no? also Xcode sometimes have this problem.. Link to comment Share on other sites More sharing options...
Slice Posted August 26, 2016 Share Posted August 26, 2016 May be exclude flag "-fr"? Make as before? Link to comment Share on other sites More sharing options...
Micky1979 Posted August 26, 2016 Author Share Posted August 26, 2016 Sure, is only for special cases like when something is wrong or you want build for "Release". Link to comment Share on other sites More sharing options...
Mork vom Ork Posted August 26, 2016 Share Posted August 26, 2016 FeedBack for now: • started from the beginning by deleting old SRC folder within my homefolder. • started script rev 3.3 and get to where the script applies the Edk2 patches. • Got the menu and selected option 3 (update and build Clover) • got the following syntax error messages: Updating edk2 <---------------------------------------------------- svn: E205000: Syntax error in revision argument '-r' edksetup.sh: svn: E205000: Syntax error in revision argument '-r' BaseTools: svn: E205000: Syntax error in revision argument '-r' MdePkg: svn: E205000: Syntax error in revision argument '-r' DuetPkg: svn: E205000: Syntax error in revision argument '-r' EdkCompatibilityPkg: svn: E205000: Syntax error in revision argument '-r' IntelFrameworkModulePkg: svn: E205000: Syntax error in revision argument '-r' IntelFrameworkPkg: svn: E205000: Syntax error in revision argument '-r' MdeModulePkg: svn: E205000: Syntax error in revision argument '-r' OvmfPkg: svn: E205000: Syntax error in revision argument '-r' PcAtChipsetPkg: svn: E205000: Syntax error in revision argument '-r' ShellPkg: svn: E205000: Syntax error in revision argument '-r' UefiCpuPkg: svn: E205000: Syntax error in revision argument '-r' BaseTools before update was: r22435 now is: r22435 • but script continues to work and finaly build latest CLOVER Rev. 3726. So 4 me it works just fine w/o any hassle. Thanx for your (always) good work. Regards... Link to comment Share on other sites More sharing options...
Micky1979 Posted August 26, 2016 Author Share Posted August 26, 2016 Thanks to you. Is a stupid error, I have only to make a variable as "local":EDK2_REV="23435"later when the funcion call edk2() function it becomes:EDK2_REV="-r $EDK2_REV" i.e is the argument for svn command and so is now "-r 2435".But if you call that function more the once ... it become "-r -r 2435" and show that error.Thanks to reported this. Link to comment Share on other sites More sharing options...
Philip Petev Posted August 26, 2016 Share Posted August 26, 2016 Tested the latest script, works for me too. Good job! I was going to tell you about that, the EDK2_REV="-r $EDK2_REV" declaration, such declaration is not recommended in most programming languages, so it would be better to change the first variable to something else. BTW, the /opt folder ....but as already said "/opt/local/bin" does not exist on osx .. Slice create this path for its own. please wait the new one. Actually, that path is where packages like MacPorts and Homebrew usually live. 2 Link to comment Share on other sites More sharing options...
Micky1979 Posted August 26, 2016 Author Share Posted August 26, 2016 Tested the latest script, works for me too. Good job! I was going to tell you about that, the EDK2_REV="-r $EDK2_REV" declaration, such declaration is not recommended in most programming languages, so it would be better to change the first variable to something else. BTW, the /opt folder thanks. tomorrow I'll have more time for testing and a corrected script will be. Actually, that path is where packages like MacPorts and Homebrew usually live. That path is out of SIP control firstly. IMHO macports is one of the things that make scripters have their hairs white ...Italian said.. because that can make any script fails because non standard commands get installed and your bash profile modified. Why I like projects build their tools, no surprises. 1 Link to comment Share on other sites More sharing options...
Slice Posted August 27, 2016 Share Posted August 27, 2016 Sure, is only for special cases like when something is wrong or you want build for "Release". I always build "Release". So I have to always explicitly write "-fr"? Link to comment Share on other sites More sharing options...
Recommended Posts