From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ot1-x334.google.com (mail-ot1-x334.google.com [IPv6:2607:f8b0:4864:20::334]) by sourceware.org (Postfix) with ESMTPS id 8A3B23892456 for ; Wed, 27 Jan 2021 15:05:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 8A3B23892456 Received: by mail-ot1-x334.google.com with SMTP id d7so1943337otf.3 for ; Wed, 27 Jan 2021 07:05:29 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=zMRbeoJfGHlLCxcTXRBllwwj7aHY6RY16J3+EbJOvYM=; b=C81xALGbPxztKMNketnpygwJf7UeZqrP2p+ce14ZL1W4qelwjqpy7IXOkQS/teZ2Su IRTSlgrv+wPT3NJ4wx2kozV24S4ibp5iZk/1/Xm/iA8tVkJB+0YzESVfe6FChZWKAkXK 8GcVEQ8Jg7Cu3yETliVgLBC+p6yeyA8xn0yLygN3KZvfXimMPLXW9/x5Nzkh7h6eydF4 xl5uQFoxK9mch9KifU3S5qR0fB7vBHbrqDj0d0R66YyIZa31Qps+bO9nbndaH52k8r5l KfnIe3Nm8B8JswcO3xj9rfO1RHgd1wBLyVBIsHuyir8t+DPOreqa3jJ/vp1tKtQVUiAk WCoQ== X-Gm-Message-State: AOAM530CLLSaSO6VZ9RIlpk+WcthNrtsKXR2JTD0qi1Xx43S3ETXu5PH CJN5jsQthK47WoKwASNQqK+NbdFMPBYH/MMGhxNuW0mFpo+LpmFT X-Google-Smtp-Source: ABdhPJypcnxK29vRyM4p9ZRVpe5Sosu/8ng/zguT53WLqOtLzIFOB3IVpqFKFkeEJUtCQvishTKZI3notlZ1iZ1dF5o= X-Received: by 2002:a9d:4d8c:: with SMTP id u12mr8081289otk.186.1611759929009; Wed, 27 Jan 2021 07:05:29 -0800 (PST) MIME-Version: 1.0 From: Manuel Lauss Date: Wed, 27 Jan 2021 16:04:53 +0100 Message-ID: Subject: How to set x86 ISA needed property? To: libc-help@sourceware.org Content-Type: text/plain; charset="UTF-8" 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, LIKELY_SPAM_BODY, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) 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: Wed, 27 Jan 2021 15:05:32 -0000 I've been building a userland for an AMD E-450 (gcc march=btver1) on a much more modern and faster x86 host. Now, the machione does not boot because up-to-date glibc devel says this: /lib64/libc.so.6: CPU ISA level is lower than required readelf libc.so.6 says: Displaying notes found in: .note.gnu.property Owner Data size Description GNU 0x00000010 NT_GNU_PROPERTY_TYPE_0 Properties: x86 ISA needed: x86-64-baseline, x86-64-v2, x86-64-v3 x86-64-v3 is supported by the build machine, but the btver1 is at most -v2. This used to work in the past; is there a way to force glibc to a certain level? (binutils-2.35.1, gcc-10.2.1, glibc master as of 27.01.2021). Thanks! Manuel