From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ej1-x635.google.com (mail-ej1-x635.google.com [IPv6:2a00:1450:4864:20::635]) by sourceware.org (Postfix) with ESMTPS id 1E6873858C2C for ; Thu, 24 Mar 2022 10:58:40 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 1E6873858C2C Received: by mail-ej1-x635.google.com with SMTP id qx21so8306253ejb.13 for ; Thu, 24 Mar 2022 03:58:40 -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:from:date:message-id:subject:to; bh=ot9KW6FSpSWRvmBKit3emKPkcegeBdoRuBFqB/8J14c=; b=r62N5ZxyfF5sHji3o/e1YA4IamyY3+t3Z1IhoQ7rQ/BqpLEhcYfoFnxOgmFakIRi2v 919DgC3e4xBxnSPbVcDqOEnNMR8xxxqBGZT1DmnG2HO4ON3ypgtWiLwQ9BfwTa7IgqFw LpRLVN6u6IO17yyiYyzvBSofa3azp3/9m9QbTlR0wHLOSJCCI1RltxZv45sDLBMspbGC Lyc/AQXCHs4li7Wsi90mZyK/EbyzJ4H73QQMZrY/tR3pElwEMk4p+/jE5CZqQGUCzPPt 6BNYxfuJHyUOvrxZQ9aCJt0C8G9TTOwDe8QjVol0JkKsKzvmdjWJngg+6+zbAHmagID7 Q/tA== X-Gm-Message-State: AOAM532f06IJCgyJuQ4xa3TnV1Bbv/1ZmYQAEm9kfeyYbuxnOP6m+c+e MxVy0XiQQZ0zd0+j00UhLzjiwDlMBIufusH2syuUpALE X-Google-Smtp-Source: ABdhPJzp2UELLD70xmITOor6UGMFWu76IjxfRZ9PmplTrvFXlekCl3RE95Laf5INRDEoMmYuvpoHQX9Qw2v0m0j+E3A= X-Received: by 2002:a17:907:8688:b0:6d2:c19:e1a0 with SMTP id qa8-20020a170907868800b006d20c19e1a0mr4909702ejc.249.1648119518622; Thu, 24 Mar 2022 03:58:38 -0700 (PDT) MIME-Version: 1.0 From: Dalas Yoo Date: Thu, 24 Mar 2022 19:58:27 +0900 Message-ID: Subject: GCC cross compiler build failure To: crossgcc@sourceware.org X-Spam-Status: No, score=-1.0 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: crossgcc@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: crossgcc mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Mar 2022 10:58:41 -0000 Hi, currently I am working on building the embedded cross compiler from GCC based on the newlib and the libgloss. After successfully building and installing the newlib and the libgloss libraries, I tried the gcc cross compiler and found my cross compiler toolchain cannot find the crt0.o files in my toolchain targeting arm-none-eabi. I searched the build result, and found out that the crt0.o file is built with some prefixes such as rdimon, nosys, etc. So here's my question. 1. where the "crt0.o" file resides? 2. If the type of the crt0.o files are intended, what specs should be the default specs for the target arm-none-eabi? Thank you for your help. Dalas.