From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ot1-x331.google.com (mail-ot1-x331.google.com [IPv6:2607:f8b0:4864:20::331]) by sourceware.org (Postfix) with ESMTPS id 4EE4C3858D28 for ; Wed, 1 Dec 2021 05:50:44 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 4EE4C3858D28 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=sudomaker.com Authentication-Results: sourceware.org; spf=none smtp.mailfrom=sudomaker.com Received: by mail-ot1-x331.google.com with SMTP id x19-20020a9d7053000000b0055c8b39420bso33646025otj.1 for ; Tue, 30 Nov 2021 21:50:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sudomaker-com.20210112.gappssmtp.com; s=20210112; h=mime-version:from:date:message-id:subject:to; bh=KVZlmxseNT+B+PddPi6bMPwdC7uiITB26K/LzE7nwUM=; b=AELmE0PqXezBcisQzYht9WwqpURgtU9MRwk1+SBVZEAQygPy3R6l8czxLPxMXKkboj vOe2Ov59MUL1EOA6f6XWpl3c8FnAlleBaDr7JaXyc67L5nwuVFmbeYKiNHBkVjhTFK8K WRjPKdnImrQgvt1B0ME5AawiwfI6lesz36ZVt64+ijIVwF/nZYFpfnv4VSMwSFtFCFm7 pnD/9Dz4/vj6KixlGlZsMsDrv8ndarrqRva4ZWLXSmF03MBfLGKpSktYYr/kwRI5QOc7 OOs9uc9/X5qct4/T5NFv3dkacPNjgMv1yAJfJ48gMt2NHsqIHRXac23uFVpn6tTOCqoF 98XQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=KVZlmxseNT+B+PddPi6bMPwdC7uiITB26K/LzE7nwUM=; b=cBIvOd9bj5kyJtJW2UfH35mHfkX8OejhcYv+ooGDAxGj7PIIFLuM2GzDP1o6Oz4BDG uRDiTVaKsMrV/S0nVfCOeCtGNRQFCBeAtE4F1IoCfxwNkUXJj2vUQvmmB4tIotKFUZRq utfYxdwuuTctW4i4Y7h6ceQa1zn8tzrJ5NqEfyVat8Y0KNy7ZXSdUcTVll3T90T/+MQ+ 118EDL1nwIJqs7SP6woAQv7OzgZrUV8yO6MWeEy/mq2DOSSPufefMDeegssG5OBLclc1 oo2wrG1gfG6i/sYYnPBTRmMJapalL3Wye4ssLjwXlcNNrDTGshYsV+bqNlONZVWcIvHu 902A== X-Gm-Message-State: AOAM532TzdDO8flDaUl1dLu3zjUZayRRSMJ/E+eU0JSHgLjAyfdcVKRQ /r3hepOGLIqoPE6tmJHP7JHZ+UUc+ypIzoUCeb/EUPUXlwRZOg== X-Google-Smtp-Source: ABdhPJx26RkDAravsDanh0h4AFIieY7vGG2E0+UqND+jKandN+tB+t+KMUtxNNQE2wI9HgXeISLAw/kJWwxN3OeYMu0= X-Received: by 2002:a9d:8c2:: with SMTP id 60mr3958209otf.174.1638337843493; Tue, 30 Nov 2021 21:50:43 -0800 (PST) MIME-Version: 1.0 From: Hakurei Reimu Date: Wed, 1 Dec 2021 13:50:30 +0800 Message-ID: Subject: Missing "micromips" multilib option for mips*-elf target To: gcc@gcc.gnu.org Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-1.2 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2021 05:50:45 -0000 Hello, I'm trying to build a toolchain for the Microchip PIC32MM MCU using latest GCC 11.2. But it seems that there isn't a "micromips" multilib option available. In this way I'm unable to compile libstdc++ and newlib for this platform. Just like the ARM Cortex-M MCUs which only support the Thumb instruction set, the PIC32MM only supports the micromips instruction set (and not mips32). I wonder if you can add all the possible combinations to the multilib list for the mips*-elf target, just like the arm-*-eabi target. Thank you very much.