We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On 64-bit Ubuntu 64-bit libs are in /usr/lib and 32 bit libs are in /usr/lib32. Libdir needs to be changed to:
ifeq ($(ARCH),x86_64) LIBDIR=/usr/lib FORMAT=efi-app-x86-64 else ARCH=ia32 LIBDIR=/usr/lib32 FORMAT=efi-app-$(ARCH) endif
The text was updated successfully, but these errors were encountered:
Just do it yourself and file a pull request, or just make an updated fork.
Sorry, something went wrong.
As a workaround build using make LIBDIR=/usr/lib
make LIBDIR=/usr/lib
Can I close this one as stale?
No branches or pull requests
On 64-bit Ubuntu 64-bit libs are in /usr/lib and 32 bit libs are in /usr/lib32.
Libdir needs to be changed to:
The text was updated successfully, but these errors were encountered: