diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2022-04-06 12:26:13 +0200 |
---|---|---|
committer | Kwok Cheung Yeung <kcy@codesourcery.com> | 2022-06-28 13:55:29 -0700 |
commit | 55890b268ea44fc7dd30bb45933563bf0ee11c56 (patch) | |
tree | 2f37e27afbe6dcb1463001e7b9b71dc9f4e03298 /gcc | |
parent | a309e5a14574a74e1641706dc58573792a1d2096 (diff) | |
download | gcc-55890b268ea44fc7dd30bb45933563bf0ee11c56.zip gcc-55890b268ea44fc7dd30bb45933563bf0ee11c56.tar.gz gcc-55890b268ea44fc7dd30bb45933563bf0ee11c56.tar.bz2 |
libgomp: Remove unused '--with-hsa-runtime', '--with-hsa-runtime-include', '--with-hsa-runtime-lib'
With recent commit 2e309a4eff80e55b53d32d26926a2a94eabfea21 "libgomp testsuite:
Don't amend 'LD_LIBRARY_PATH' for system-provided HSA Runtime library",
and commit d6adba307508c75f1ccb2121eb1a43c9ab1d4056 "libgomp GCN plugin:
Clean up unused references to system-provided HSA Runtime library", the last
uses of '--with-hsa-runtime' etc. are gone.
gcc/
* doc/install.texi: Don't document '--with-hsa-runtime',
'--with-hsa-runtime-include', '--with-hsa-runtime-lib'.
libgomp/
* plugin/configfrag.ac: Remove '--with-hsa-runtime',
'--with-hsa-runtime-include', '--with-hsa-runtime-lib' processing.
* Makefile.in: Regenerate.
* configure: Likewise.
* testsuite/Makefile.in: Likewise.
(cherry picked from commit 876ac21b7e796f9efb859dfb46ae2a4126b0b782)
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog.omp | 8 | ||||
-rw-r--r-- | gcc/doc/install.texi | 12 |
2 files changed, 8 insertions, 12 deletions
diff --git a/gcc/ChangeLog.omp b/gcc/ChangeLog.omp index 59ad994..de95d41 100644 --- a/gcc/ChangeLog.omp +++ b/gcc/ChangeLog.omp @@ -1,3 +1,11 @@ +2022-04-06 Thomas Schwinge <thomas@codesourcery.com> + + Backport from mainline: + 2022-04-06 Thomas Schwinge <thomas@codesourcery.com> + + * doc/install.texi: Don't document '--with-hsa-runtime', + '--with-hsa-runtime-include', '--with-hsa-runtime-lib'. + 2022-05-06 Marcel Vollweiler <marcel@codesourcery.com> Backport from mainline: diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi index 10bfcef..45ef39d 100644 --- a/gcc/doc/install.texi +++ b/gcc/doc/install.texi @@ -2329,18 +2329,6 @@ those are in separate optional packages and where the presence or absence of those optional packages should determine the actual supported offloading target set rather than the GCC configure-time selection. -@item --with-hsa-runtime=@var{pathname} -@itemx --with-hsa-runtime-include=@var{pathname} -@itemx --with-hsa-runtime-lib=@var{pathname} - -If you configure GCC with offloading which uses an HSA run-time such as -AMDGCN but do not have the HSA run-time library installed in a standard -location then you can explicitly specify the directory where they are -installed. The @option{--with-hsa-runtime=@/@var{hsainstalldir}} option -is a shorthand for -@option{--with-hsa-runtime-lib=@/@var{hsainstalldir}/lib} and -@option{--with-hsa-runtime-include=@/@var{hsainstalldir}/include}. - @item --enable-cet @itemx --disable-cet Enable building target run-time libraries with control-flow |