Arkyo
Arkyo

Reputation: 345

How to compile UEFI Applications with GNU-UEFI in Windows?

I've read this but I believe the setup cannot be used in Windows. Is there anyway I can build UEFI apps in WIndows?

Upvotes: 2

Views: 1915

Answers (2)

0BLU
0BLU

Reputation: 718

If you want to use GNU-EFI on Windows you can take a look at https://github.com/pbatard/uefi-simple
It is already pre-configured for VisualStudio, you just need to press "Play" (F5).

Upvotes: 0

unixsmurf
unixsmurf

Reputation: 6234

gnu-efi was created to make it easy to build UEFI applications/drivers from a unix-like operating system.

If you are on Windows, the traditional way would be to use Visual Studio (community edition is fine) and the open source TianoCore EDK2 project. Instructions can be found in the TianoCore wiki.

Upvotes: 1

Related Questions