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
Simply running make fails:
make
g++ -I fvlib -I fvfutil -g -Wall -D_NOT_R_FILEVECTOR -std=c++0x fvlib/*.cpp fvfutil/text2fvf.cpp fvfutil/convert.cpp -lcppunit -o bin/convert /usr/bin/ld: cannot open output file bin/convert: No such file or directory collect2: error: ld returned 1 exit status Makefile:100: recipe for target 'bin/convert' failed make: *** [bin/convert] Error 1
Running mkdir bin before running make fixes the problem, so we should add a line to that effect to the Makefile.
mkdir bin
Makefile
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Simply running
make
fails:Running
mkdir bin
before runningmake
fixes the problem, so we should add a line to that effect to theMakefile
.The text was updated successfully, but these errors were encountered: