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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
gcc -Wall -Wextra -Werror -m32 mkfs.c -o mkfs mkfs.c:1:23: fatal error: sys/types.h: No such file or directory #include <sys/types.h> ^ compilation terminated. Makefile:38: recipe for target 'mkfs' failed make: *** [mkfs] Error 1
... perhaps (a) step(s) can be added to the README.md?
The text was updated successfully, but these errors were encountered:
after some research, I ran:
sudo apt-get install libc6-dev-i386
and then make completed w/o errors. So, in my case the list of packages (which I had already installed) was not sufficient.
Sorry, something went wrong.
thanks.
to resolve this problem you should install a library named : libc6-dev by typing
sudo apt install libc6-dev
it will run
No branches or pull requests
gcc -Wall -Wextra -Werror -m32 mkfs.c -o mkfs
mkfs.c:1:23: fatal error: sys/types.h: No such file or directory
#include <sys/types.h>
^
compilation terminated.
Makefile:38: recipe for target 'mkfs' failed
make: *** [mkfs] Error 1
... perhaps (a) step(s) can be added to the README.md?
The text was updated successfully, but these errors were encountered: