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
Support for converting cuda from Makefile to compile_commands.json.
CXX=g++ all: helloworld hello helloworld: helloworld.cpp $(CXX) -o helloworld helloworld.cpp --std=c++17 -DMAKE hello: hello.cu nvcc -o hello hello.cu -DCUMAKE clean: rm -f hello helloworld
[ { "directory": "/home/akshit/Projects/CppVariations/makefile", "arguments": [ "g++", "-o", "helloworld", "helloworld.cpp", "--std=c++17", "-DMAKE" ], "file": "helloworld.cpp" } ]
The text was updated successfully, but these errors were encountered:
It seems all targets for filetype .cu is ignored. I use clang++ to for compiling cuda files, but it is ignored too.
.cu
Sorry, something went wrong.
No branches or pull requests
Support for converting cuda from Makefile to compile_commands.json.
Sample Makefile
current compile_commands.json creation
The text was updated successfully, but these errors were encountered: