From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id 3C72C3857C44 for ; Sat, 16 Apr 2022 13:41:19 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 3C72C3857C44 Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-562-yDVkvfjHMJO5LMscPYZvPQ-1; Sat, 16 Apr 2022 09:41:15 -0400 X-MC-Unique: yDVkvfjHMJO5LMscPYZvPQ-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 97050185A79C; Sat, 16 Apr 2022 13:41:15 +0000 (UTC) Received: from oldenburg.str.redhat.com (unknown [10.39.193.61]) by smtp.corp.redhat.com (Postfix) with ESMTPS id BEC532166B2D; Sat, 16 Apr 2022 13:41:14 +0000 (UTC) From: Florian Weimer To: Manolo Padron Martinez Cc: Manolo Padron Martinez via Libc-help Subject: Re: Help compiling glibc 2.31 wih System V abi for powerpc References: <87k0bpth0f.fsf@oldenburg.str.redhat.com> Date: Sat, 16 Apr 2022 15:41:12 +0200 In-Reply-To: (Manolo Padron Martinez's message of "Sat, 16 Apr 2022 14:15:07 +0100") Message-ID: <87fsmdtabr.fsf@oldenburg.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.78 on 10.11.54.6 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-Spam-Status: No, score=-4.0 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H5, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_NONE, TXREP, T_SCC_BODY_TEXT_LINE, URIBL_BLACK autolearn=no autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: libc-help@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-help mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Apr 2022 13:41:20 -0000 * Manolo Padron Martinez: > I still have the same problem. libc_pic.a keeps telling me that > gettimeofday and time its using GNU ABI, and when it links libc.so it > becomes GNU ABI. The reason that I need it in System V its I have an > old powerpc with and old linux distro, when I try to cross compile > something for this machine I get problems because it has an on libc, > so I need libc and If I try to use it with GNU ABI the program said > "wrong ABI format" . So you don't want to replace glibc on the target system? Then you shouldn't build a new glibc, but copy the target glibc into your sysroot. Thanks, Florian