[PR target/67822] OpenMP offloading to nvptx fails
authorThomas Schwinge <thomas@codesourcery.com>
Fri, 2 Oct 2015 19:27:30 +0000 (21:27 +0200)
committerThomas Schwinge <tschwinge@gcc.gnu.org>
Fri, 2 Oct 2015 19:27:30 +0000 (21:27 +0200)
gcc/
PR target/67822
* config/nvptx/mkoffload.c (main): Scan the argument vector for
-fopenmp, and skip generating an offloading image if specified.

From-SVN: r228414

gcc/ChangeLog
gcc/config/nvptx/mkoffload.c

index 3f7561a..1317a2d 100644 (file)
@@ -1,3 +1,9 @@
+2015-10-02  Thomas Schwinge  <thomas@codesourcery.com>
+
+       PR target/67822
+       * config/nvptx/mkoffload.c (main): Scan the argument vector for
+       -fopenmp, and skip generating an offloading image if specified.
+
 2015-10-02  Uros Bizjak  <ubizjak@gmail.com>
 
        * system.h (ROUND_UP): New macro definition.
index 926c82b..69eb4ea 100644 (file)
@@ -1030,6 +1030,7 @@ main (int argc, char **argv)
   expandargv (&argc, &argv);
 
   /* Scan the argument vector.  */
+  bool fopenmp = false;
   for (int i = 1; i < argc; i++)
     {
 #define STR "-foffload-abi="
@@ -1044,6 +1045,8 @@ main (int argc, char **argv)
                         "unrecognizable argument of option " STR);
        }
 #undef STR
+      else if (strcmp (argv[i], "-fopenmp") == 0)
+       fopenmp = true;
       else if (strcmp (argv[i], "-v") == 0)
        verbose = true;
     }
@@ -1082,8 +1085,8 @@ main (int argc, char **argv)
     fatal_error (input_location, "cannot open '%s'", ptx_cfile_name);
 
   /* PR libgomp/65099: Currently, we only support offloading in 64-bit
-     configurations.  */
-  if (offload_abi == OFFLOAD_ABI_LP64)
+     configurations.  PR target/67822: OpenMP offloading to nvptx fails.  */
+  if (offload_abi == OFFLOAD_ABI_LP64 && !fopenmp)
     {
       ptx_name = make_temp_file (".mkoffload");
       obstack_ptr_grow (&argv_obstack, "-o");