diff options
author | Tobias Burnus <tobias@codesourcery.com> | 2020-07-15 09:59:59 +0200 |
---|---|---|
committer | Tobias Burnus <tobias@codesourcery.com> | 2020-07-15 09:59:59 +0200 |
commit | 534475a9feefa981510dc2eebb61df7d0650cc93 (patch) | |
tree | d016b5df97b86556e0637efef015d3765f0082bd /libgomp/Makefile.in | |
parent | 698518794aaf10df5d27a392d835a4b90282d57e (diff) | |
download | gcc-534475a9feefa981510dc2eebb61df7d0650cc93.tar.gz |
libgomp: Add Fortran routine support for allocators
libgomp/ChangeLog:
* allocator.c: Add ialias for omp_init_allocator and
omp_destroy_allocator.
* configure.ac: Set INTPTR_T_KIND.
* configure: Regenerate.
* Makefile.in: Regenerate.
* testsuite/Makefile.in: Regenerate.
* fortran.c (omp_init_allocator_, omp_destroy_allocator_,
omp_set_default_allocator_, omp_get_default_allocator_): New
functions and ialias_redirect.
* icv.c: Add ialias for omp_set_default_allocator and
omp_get_default_allocator.
* libgomp.map (OMP_5.0.1): Add omp_init_allocator_,
omp_destroy_allocator_, omp_set_default_allocator_ and
omp_get_default_allocator_.
* omp_lib.f90.in: Add allocator traits parameters, declare
allocator routines and add related kind parameters.
* omp_lib.h.in: Likewise.
* testsuite/libgomp.c-c++-common/alloc-2.c: Fix sizeof.
* testsuite/libgomp.fortran/alloc-1.F90: New test.
* testsuite/libgomp.fortran/alloc-2.F90: New test.
* testsuite/libgomp.fortran/alloc-3.F: New test.
* testsuite/libgomp.fortran/alloc-4.f90: New test.
* testsuite/libgomp.fortran/alloc-5.f90: New test.
(cherry picked from commit fff15bad1ab571906c37b88380431768d917dcb0)
Diffstat (limited to 'libgomp/Makefile.in')
-rw-r--r-- | libgomp/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libgomp/Makefile.in b/libgomp/Makefile.in index 9dd3952ae38..e35bdbfcc38 100644 --- a/libgomp/Makefile.in +++ b/libgomp/Makefile.in @@ -404,6 +404,7 @@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INTPTR_T_KIND = @INTPTR_T_KIND@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBFFI = @LIBFFI@ |