mirror of git://gcc.gnu.org/git/gcc.git
[nvptx] Improve "offload compiler not found" message in mkoffload
2018-05-01 Tom de Vries <tom@codesourcery.com> PR lto/85451 * config/nvptx/mkoffload.c (main): Suggest using -B in "offload compiler not found" error message. From-SVN: r259809
This commit is contained in:
parent
b94c2dc138
commit
8ec60bacf0
|
|
@ -1,3 +1,9 @@
|
||||||
|
2018-05-01 Tom de Vries <tom@codesourcery.com>
|
||||||
|
|
||||||
|
PR lto/85451
|
||||||
|
* config/nvptx/mkoffload.c (main): Suggest using -B in "offload compiler
|
||||||
|
not found" error message.
|
||||||
|
|
||||||
2018-05-01 Tom de Vries <tom@codesourcery.com>
|
2018-05-01 Tom de Vries <tom@codesourcery.com>
|
||||||
|
|
||||||
PR other/83786
|
PR other/83786
|
||||||
|
|
|
||||||
|
|
@ -454,7 +454,8 @@ main (int argc, char **argv)
|
||||||
|
|
||||||
if (!found)
|
if (!found)
|
||||||
fatal_error (input_location,
|
fatal_error (input_location,
|
||||||
"offload compiler %s not found", GCC_INSTALL_NAME);
|
"offload compiler %s not found (consider using '-B')",
|
||||||
|
GCC_INSTALL_NAME);
|
||||||
|
|
||||||
/* We may be called with all the arguments stored in some file and
|
/* We may be called with all the arguments stored in some file and
|
||||||
passed with @file. Expand them into argv before processing. */
|
passed with @file. Expand them into argv before processing. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue