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
When running mkmf / pmake depend followed by compilation, the build process may fail with the following error message:
mkmf / pmake depend
pmake: Can't figure out how to make impfjpeg.cpp. Stop
mkmf
pmake depend
The generated dependencies.mk file contains incorrect or problematic dependency entries for impfjpeg.cpp, causing the build to fail.
dependencies.mk
impfjpeg.cpp
This problem started to occure after the inclusion of the Fjpeg library.
Manually edit the dependencies.mk file and remove the following lines:
impfjpeg.obj \ impfjpeg.eobj: impfjpeg.cpp
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
When running
mkmf / pmake depend
followed by compilation, the build process may fail with the following error message:pmake: Can't figure out how to make impfjpeg.cpp. Stop
Steps to Reproduce
mkmf
followed bypmake depend
.Root Cause
The generated
dependencies.mk
file contains incorrect or problematic dependency entries forimpfjpeg.cpp
, causing the build to fail.This problem started to occure after the inclusion of the Fjpeg library.
Workaround
Manually edit the
dependencies.mk
file and remove the following lines:impfjpeg.obj \ impfjpeg.eobj: impfjpeg.cpp
The text was updated successfully, but these errors were encountered: