mirror of git://gcc.gnu.org/git/gcc.git
Empty libgomp for nvptx
* configure.ac (noconfigdirs): Don't add "target-libgomp" for target nvptx*-*-*. * configure: Regenerate. libgomp/ * config/nvptx/affinity.c: New file. * config/nvptx/alloc.c: Likewise. * config/nvptx/bar.c: Likewise. * config/nvptx/barrier.c: Likewise. * config/nvptx/critical.c: Likewise. * config/nvptx/env.c: Likewise. * config/nvptx/error.c: Likewise. * config/nvptx/fortran.c: Likewise. * config/nvptx/iter.c: Likewise. * config/nvptx/iter_ull.c: Likewise. * config/nvptx/libgomp-plugin.c: Likewise. * config/nvptx/lock.c: Likewise. * config/nvptx/loop.c: Likewise. * config/nvptx/loop_ull.c: Likewise. * config/nvptx/mutex.c: Likewise. * config/nvptx/oacc-async.c: Likewise. * config/nvptx/oacc-cuda.c: Likewise. * config/nvptx/oacc-host.c: Likewise. * config/nvptx/oacc-init.c: Likewise. * config/nvptx/oacc-mem.c: Likewise. * config/nvptx/oacc-parallel.c: Likewise. * config/nvptx/oacc-plugin.c: Likewise. * config/nvptx/omp-lock.h: Likewise. * config/nvptx/ordered.c: Likewise. * config/nvptx/parallel.c: Likewise. * config/nvptx/proc.c: Likewise. * config/nvptx/ptrlock.c: Likewise. * config/nvptx/sections.c: Likewise. * config/nvptx/sem.c: Likewise. * config/nvptx/single.c: Likewise. * config/nvptx/splay-tree.c: Likewise. * config/nvptx/target.c: Likewise. * config/nvptx/task.c: Likewise. * config/nvptx/team.c: Likewise. * config/nvptx/time.c: Likewise. * config/nvptx/work.c: Likewise. * configure.ac: Don't probe pthreads support for host nvptx*-*-*. * configure: Regenerate. * configure.tgt (config_path): Set to "nvptx" for target nvptx*-*-*. Co-Authored-By: Jakub Jelinek <jakub@redhat.com> From-SVN: r226760
This commit is contained in:
parent
96a2d174cc
commit
44a7d18d95
|
|
@ -1,3 +1,10 @@
|
|||
2015-08-10 Thomas Schwinge <thomas@codesourcery.com>
|
||||
Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* configure.ac (noconfigdirs): Don't add "target-libgomp" for target
|
||||
nvptx*-*-*.
|
||||
* configure: Regenerate.
|
||||
|
||||
2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
|
||||
|
||||
* Makefile.def (libiconv): Define bootstrap=true.
|
||||
|
|
|
|||
|
|
@ -3168,9 +3168,8 @@ if test x$enable_static_libjava != xyes ; then
|
|||
fi
|
||||
|
||||
|
||||
# Disable libgomp on non POSIX hosted systems.
|
||||
# Enable libgomp by default on hosted POSIX systems, and a few others.
|
||||
if test x$enable_libgomp = x ; then
|
||||
# Enable libgomp by default on hosted POSIX systems.
|
||||
case "${target}" in
|
||||
*-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu)
|
||||
;;
|
||||
|
|
@ -3180,6 +3179,8 @@ if test x$enable_libgomp = x ; then
|
|||
;;
|
||||
*-*-darwin* | *-*-aix*)
|
||||
;;
|
||||
nvptx*-*-*)
|
||||
;;
|
||||
*)
|
||||
noconfigdirs="$noconfigdirs target-libgomp"
|
||||
;;
|
||||
|
|
@ -3917,7 +3918,6 @@ case "${target}" in
|
|||
noconfigdirs="$noconfigdirs gdb"
|
||||
;;
|
||||
nvptx*-*-*)
|
||||
# nvptx is just a compiler
|
||||
noconfigdirs="$noconfigdirs target-libssp target-libstdc++-v3 target-libobjc"
|
||||
;;
|
||||
or1k*-*-*)
|
||||
|
|
|
|||
|
|
@ -529,9 +529,8 @@ if test x$enable_static_libjava != xyes ; then
|
|||
fi
|
||||
AC_SUBST(EXTRA_CONFIGARGS_LIBJAVA)
|
||||
|
||||
# Disable libgomp on non POSIX hosted systems.
|
||||
# Enable libgomp by default on hosted POSIX systems, and a few others.
|
||||
if test x$enable_libgomp = x ; then
|
||||
# Enable libgomp by default on hosted POSIX systems.
|
||||
case "${target}" in
|
||||
*-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu)
|
||||
;;
|
||||
|
|
@ -541,6 +540,8 @@ if test x$enable_libgomp = x ; then
|
|||
;;
|
||||
*-*-darwin* | *-*-aix*)
|
||||
;;
|
||||
nvptx*-*-*)
|
||||
;;
|
||||
*)
|
||||
noconfigdirs="$noconfigdirs target-libgomp"
|
||||
;;
|
||||
|
|
@ -1257,7 +1258,6 @@ case "${target}" in
|
|||
noconfigdirs="$noconfigdirs gdb"
|
||||
;;
|
||||
nvptx*-*-*)
|
||||
# nvptx is just a compiler
|
||||
noconfigdirs="$noconfigdirs target-libssp target-libstdc++-v3 target-libobjc"
|
||||
;;
|
||||
or1k*-*-*)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,47 @@
|
|||
2015-08-10 Thomas Schwinge <thomas@codesourcery.com>
|
||||
Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* config/nvptx/affinity.c: New file.
|
||||
* config/nvptx/alloc.c: Likewise.
|
||||
* config/nvptx/bar.c: Likewise.
|
||||
* config/nvptx/barrier.c: Likewise.
|
||||
* config/nvptx/critical.c: Likewise.
|
||||
* config/nvptx/env.c: Likewise.
|
||||
* config/nvptx/error.c: Likewise.
|
||||
* config/nvptx/fortran.c: Likewise.
|
||||
* config/nvptx/iter.c: Likewise.
|
||||
* config/nvptx/iter_ull.c: Likewise.
|
||||
* config/nvptx/libgomp-plugin.c: Likewise.
|
||||
* config/nvptx/lock.c: Likewise.
|
||||
* config/nvptx/loop.c: Likewise.
|
||||
* config/nvptx/loop_ull.c: Likewise.
|
||||
* config/nvptx/mutex.c: Likewise.
|
||||
* config/nvptx/oacc-async.c: Likewise.
|
||||
* config/nvptx/oacc-cuda.c: Likewise.
|
||||
* config/nvptx/oacc-host.c: Likewise.
|
||||
* config/nvptx/oacc-init.c: Likewise.
|
||||
* config/nvptx/oacc-mem.c: Likewise.
|
||||
* config/nvptx/oacc-parallel.c: Likewise.
|
||||
* config/nvptx/oacc-plugin.c: Likewise.
|
||||
* config/nvptx/omp-lock.h: Likewise.
|
||||
* config/nvptx/ordered.c: Likewise.
|
||||
* config/nvptx/parallel.c: Likewise.
|
||||
* config/nvptx/proc.c: Likewise.
|
||||
* config/nvptx/ptrlock.c: Likewise.
|
||||
* config/nvptx/sections.c: Likewise.
|
||||
* config/nvptx/sem.c: Likewise.
|
||||
* config/nvptx/single.c: Likewise.
|
||||
* config/nvptx/splay-tree.c: Likewise.
|
||||
* config/nvptx/target.c: Likewise.
|
||||
* config/nvptx/task.c: Likewise.
|
||||
* config/nvptx/team.c: Likewise.
|
||||
* config/nvptx/time.c: Likewise.
|
||||
* config/nvptx/work.c: Likewise.
|
||||
* configure.ac: Don't probe pthreads support for host nvptx*-*-*.
|
||||
* configure: Regenerate.
|
||||
* configure.tgt (config_path): Set to "nvptx" for target
|
||||
nvptx*-*-*.
|
||||
|
||||
2015-08-10 Thomas Schwinge <thomas@codesourcery.com>
|
||||
|
||||
* testsuite/libgomp.oacc-c-c++-common/vector-type-1.c: New file.
|
||||
|
|
|
|||
|
|
@ -0,0 +1,12 @@
|
|||
/* This header is used during the build process to find the size and
|
||||
alignment of the public OpenMP locks, so that we can export data
|
||||
structures without polluting the namespace.
|
||||
|
||||
When using the Linux futex primitive, non-recursive locks require
|
||||
one int. Recursive locks require we identify the owning task
|
||||
and so require in addition one int and a pointer. */
|
||||
|
||||
typedef int omp_lock_t;
|
||||
typedef struct { int lock, count; void *owner; } omp_nest_lock_t;
|
||||
typedef int omp_lock_25_t;
|
||||
typedef struct { int owner, count; } omp_nest_lock_25_t;
|
||||
|
|
@ -15041,6 +15041,9 @@ case "$host" in
|
|||
*-*-rtems*)
|
||||
# RTEMS supports Pthreads, but the library is not available at GCC build time.
|
||||
;;
|
||||
nvptx*-*-*)
|
||||
# NVPTX does not support Pthreads, has its own code replacement.
|
||||
;;
|
||||
*)
|
||||
# Check to see if -pthread or -lpthread is needed. Prefer the former.
|
||||
# In case the pthread.h system header is not found, this test will fail.
|
||||
|
|
|
|||
|
|
@ -179,6 +179,9 @@ case "$host" in
|
|||
*-*-rtems*)
|
||||
# RTEMS supports Pthreads, but the library is not available at GCC build time.
|
||||
;;
|
||||
nvptx*-*-*)
|
||||
# NVPTX does not support Pthreads, has its own code replacement.
|
||||
;;
|
||||
*)
|
||||
# Check to see if -pthread or -lpthread is needed. Prefer the former.
|
||||
# In case the pthread.h system header is not found, this test will fail.
|
||||
|
|
|
|||
|
|
@ -151,6 +151,10 @@ case "${target}" in
|
|||
XLDFLAGS="${XLDFLAGS} -lpthread"
|
||||
;;
|
||||
|
||||
nvptx*-*-*)
|
||||
config_path="nvptx"
|
||||
;;
|
||||
|
||||
*)
|
||||
;;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue