iPXE discussion forum

Full Version: Build error: "No rule to make target 'bin/y.dbg1.o'"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This is on Fedora 24, with a freshly cloned ipxe as of half an hour or so ago. I believe I have all the dependencies listed.

Code:
cd ipxe/src
make
, as advised on the Download page, runs for a while before stopping with:
Code:
make: *** No rule to make target 'bin/y.dbg1.o', needed by 'bin/blib.a'.  Stop.

I don't really know where to start looking, to be honest. Any ideas?

Thanks,

Pete
if you build with
Code:
make DEBUG=y
you will get this error, you will also get this if you do
Code:
DEBUG=y make
or export DEBUG=y

if you have a script where DEBUG=y is set it will probably generate the same thing.

The fix is to make sure that DEBUG is not set.
Reference URL's