I am trying to create a efi app by manually compiling and linking the source code with MS's VC compiler and MS's Linker.
The source code compiles fine but I get a linker error:
error unresolved external symbol gEfiShellProtocolGuid referenced in function main
It would seem I am unable to access gEfiShellProtocolGuid.
Code:
#include <Uefi.h>
#include <Library/UefiLib.h>
#include <Shell.h>
EFI_STATUS EFIAPI main(IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE* SystemTable)
{
EFI_SHELL_PROTOCOL* efiShellProt;
SystemTable->BootServices->LocateProtocol(&gEfiShellProtocolGuid, NULL, (VOID**)&efiShellProt);
CHAR16* cmd = L"ls";
efiShellProt->Execute(&ImageHandle, cmd, NULL, NULL);
return EFI_SUCCESS;
}
I would assume I get this error because I am doing something wrong when trying to manually compile and link up the files.
This is how I attempt to compile it:
cl.exe /Zl /GS- /c /I"C:\edk2\MdePkg\Include" /I"C:\edk2\MdePkg\Include\Library" /I"C:\edk2\ShellPkg\Include\Protocol" /I"C:\edk2\MdePkg\Include\X64" /I"C:\edk2\MdePkg\Include\Protocol" /I"C:\edk2\ShellPkg\Include\Library" MyProgram.c
This is how I attempt to link it:
link /entry:main /dll /IGNORE:4086 MyProgram.obj
Any solutions on how I can fix this linker error?
You likely need to add gEfiShellProtocolGuid to the [Protocols] section of your application's INF file:
When building directly with compiler/linker, you are missing the AutoGen.c file autogenerated by the EDKII tools from the INF file. The AutoGen.c file contains equates for symbols like gEfiShellProtocolGuid and a bunch of other definitions. You may have to replicate those to get your program fully working.