From: Joel Rosdahl Date: Sun, 30 Jun 2024 12:42:58 +0000 (+0200) Subject: chore: Add note about --compile being an NVCC option X-Git-Tag: v4.11~136 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b3d862d45edaf9c0e8ef663fd259d9b26b7a672;p=thirdparty%2Fccache.git chore: Add note about --compile being an NVCC option --- diff --git a/src/ccache/argprocessing.cpp b/src/ccache/argprocessing.cpp index a5e2e24e..3ac23323 100644 --- a/src/ccache/argprocessing.cpp +++ b/src/ccache/argprocessing.cpp @@ -591,7 +591,7 @@ process_option_arg(const Context& ctx, } // We must have -c. - if (arg == "-c" || arg == "--compile") { + if (arg == "-c" || arg == "--compile") { // --compile is NVCC state.found_c_opt = true; return Statistic::none; }