From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-il1-x12c.google.com (mail-il1-x12c.google.com [IPv6:2607:f8b0:4864:20::12c]) by sourceware.org (Postfix) with ESMTPS id 41988385843E for ; Sat, 16 Apr 2022 21:51:27 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 41988385843E Received: by mail-il1-x12c.google.com with SMTP id 14so6594115ily.11 for ; Sat, 16 Apr 2022 14:51:27 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=ZmX+peuMteU1PwKKd13UfxYYyFktbtIG69j9o7N10Xc=; b=c8/OEGEhWlOKvmzTaFME1rzty+5mGljB/GHJh43QXeL6VjddbIDsdOKjdkrSGNvPG2 b7qT0n7aauFgT0sj9NQci9XHvIFjkHHLZckANQinbtZnhLA3buLGqQrDtaS8RHqy7n9V 4ZRWcH+tWWArF0vpc8l5DduSU4tcd7Gh1fzwEIxcPeMQ/D2LQHrFr9S9rOYZKWLSc4kR WCIzT3GvwkPNVpEAaVOFFEjITS9dYl9mNGZ3BF5PHvPa6Kep0rri2TTeFThtIXdkxdzS jp5P+UA8u4YokGaiI1puETbnJa1SbEMZifUH2fVsGi9dREsLSaiGY1Y139fy+svQBF2Y E/EQ== X-Gm-Message-State: AOAM530bRB9xOw5CL0/YZQU9XwV2cQnY1Q/kQLZJ/ye3GF8tJ9nekHTB /tT48DQJf7k3cIMqpzDapfR/OwZ6xjy5V3JRAIElcOfWYZY= X-Google-Smtp-Source: ABdhPJz5g1buMnVqmFyHPE/DBKXJ/DU4o4mv0pRGMizQq6RkSTwqC3gQf+h3RKSgBusb1ZpOCQdip2/NpPcwr8KQ27Y= X-Received: by 2002:a05:6e02:1a83:b0:2cb:cfd6:7c18 with SMTP id k3-20020a056e021a8300b002cbcfd67c18mr1879581ilv.20.1650145886458; Sat, 16 Apr 2022 14:51:26 -0700 (PDT) MIME-Version: 1.0 References: <87k0bpth0f.fsf@oldenburg.str.redhat.com> <87fsmdtabr.fsf@oldenburg.str.redhat.com> In-Reply-To: <87fsmdtabr.fsf@oldenburg.str.redhat.com> From: Manolo Padron Martinez Date: Sat, 16 Apr 2022 22:51:15 +0100 Message-ID: Subject: Re: Help compiling glibc 2.31 wih System V abi for powerpc To: Florian Weimer Cc: Manolo Padron Martinez via Libc-help X-Spam-Status: No, score=-0.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, HTML_MESSAGE, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 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 21:51:28 -0000 > > 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. > Again thank you Florian. I've tried to use sysroot with configure and so on but it seems the software i'm trying to compile its ignoring --with-sysroot flag, but I tried to put all the libs in a directory and force it with -L and it works, the only problem is the software i'm trying to compile use some features of libc that are only in the new releases. So I have to return to my original plan and try to compile glibc with system v abi. I'll keep trying to discover what's the reason that changes both time functions into gnu abi. I took a look at IFUNCS (I didn't know what they are until you tell me) but I don't see any IFUNC in those functions. One again, any suggestion would be great. Thanks again