| Server IP : 217.160.0.212 / Your IP : 216.73.216.141 Web Server : Apache System : Linux www 6.18.51-i1-ampere #1196 SMP Fri Sep 11 20:43:55 CEST 2026 aarch64 User : sws1073854427 ( 1073854427) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/share/go/src/cmd/go/testdata/script/ |
Upload File : |
# Verify the linker will correctly resolve
# ppc64le objects compiled with gcc's -fno-plt
# option. This inlines PLT calls, and generates
# additional reloc types which the internal linker
# should handle.
#
# Verifies golang.org/issue/53345
#
# Note, older gcc/clang may accept this option, but
# ignore it if binutils does not support the relocs.
[!compiler:gc] skip
[!cgo] skip
[!GOARCH:ppc64le] skip
env CGO_CFLAGS='-fno-plt -O2 -g'
go build -ldflags='-linkmode=internal'
exec ./noplttest
stdout helloworld
-- go.mod --
module noplttest
-- noplttest.go --
package main
/*
#include <stdio.h>
void helloworld(void) {
printf("helloworld\n");
fflush(stdout);
}
*/
import "C"
func main() {
C.helloworld()
}