diff options
author | Clément Chigot <clement.chigot@atos.net> | 2020-08-07 14:45:34 +0200 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2020-08-12 11:33:54 -0700 |
commit | d040555a0611bd47cb5878443bbb5097e4259d82 (patch) | |
tree | 7cbe287c97f3a5240c787d4fa311f0843e93ac56 /libgo/testsuite | |
parent | d58f078ce2d53e5dab6b3d0d5f960504268e1894 (diff) | |
download | gcc-d040555a0611bd47cb5878443bbb5097e4259d82.zip gcc-d040555a0611bd47cb5878443bbb5097e4259d82.tar.gz gcc-d040555a0611bd47cb5878443bbb5097e4259d82.tar.bz2 |
libgo: correctly handle AIX FAT library creation
The previous patch wasn't working everytime. Especially when AR had
"-X32_64", the new .so would replace the default one and not just being
added.
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/247377
Diffstat (limited to 'libgo/testsuite')
-rw-r--r-- | libgo/testsuite/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/testsuite/Makefile.in b/libgo/testsuite/Makefile.in index ae42fad..7869265 100644 --- a/libgo/testsuite/Makefile.in +++ b/libgo/testsuite/Makefile.in @@ -131,7 +131,7 @@ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) DEJATOOL = $(PACKAGE) RUNTESTDEFAULTFLAGS = --tool $$tool --srcdir $$srcdir ACLOCAL = @ACLOCAL@ -AIX_DEFAULT_ARCH = @AIX_DEFAULT_ARCH@ +AIX_EXTRA_ARCH = @AIX_EXTRA_ARCH@ ALLGOARCH = @ALLGOARCH@ ALLGOARCHFAMILY = @ALLGOARCHFAMILY@ ALLGOOS = @ALLGOOS@ |