From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-il1-x135.google.com (mail-il1-x135.google.com [IPv6:2607:f8b0:4864:20::135]) by sourceware.org (Postfix) with ESMTPS id 0398338618E2 for ; Mon, 28 Sep 2020 14:43:21 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 0398338618E2 Received: by mail-il1-x135.google.com with SMTP id o9so1464115ils.9 for ; Mon, 28 Sep 2020 07:43:20 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=r1nbp9XrmPdRBE3PpDu9kFrTIG82bC7Nq6KOq32Q2YQ=; b=rCicJCPWMdhcvnQef338qqp6wKMUc2JE38dvH+kZYwryHDVOsXfUUmS1L6RczLeZu6 66UwAK0nJIjxTFzGqchrXdeASRbNDZUXoaI7Li8bi6pGxN1EJ3il7yIj0IcvBrAKO7OP /0R19e/FBE+tHwwfzV0u5lzvTcz8rcDL/0+ZN9yf3XCklgnVQGUTziT/8jGUSUYqIwYS 4VWTsw39IhnXqv4GW7sSAw7HZJhMiD9SVQVk8+Mz7hWNu/DUz8etOTEjUV7fWgx2KE4y 01TNWKOp1u8YoBbL8297Q1Bn2t6dsMEIShlQUjO07jzGCDrUcbyw1M7sf0jo1vh94tnN phJA== X-Gm-Message-State: AOAM533eisVs0XkRuwk4keILrWfYSFueucESUOvhPPGWAl4hjaptrSWS XN/PcHjMUJ2ol3xEVTmumDBwSNP1DzAMP1LW6Pt8uFaBDMg= X-Google-Smtp-Source: ABdhPJz+hEX+KUYVaJPUKlfqHAhneAJBxnGFGd9F5oMSLR+hngnYUY9z9V36vzyvI43hBCa0rxVob3e7A9WCIeK5cA0= X-Received: by 2002:a05:6e02:d06:: with SMTP id g6mr1437997ilj.151.1601304200502; Mon, 28 Sep 2020 07:43:20 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: "H.J. Lu" Date: Mon, 28 Sep 2020 07:42:44 -0700 Message-ID: Subject: Re: how to set .bss section type to PROGBITS within linker script To: William Tambe Cc: Binutils Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-3032.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: binutils@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Binutils mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Sep 2020 14:43:22 -0000 On Mon, Sep 28, 2020 at 7:38 AM William Tambe via Binutils wrote: > > Is there a way to set .bss section type to PROGBITS within a linker script ? By definition, a .bss output section is NOBITS. You can't make a NOBITS output section PROGBITS. -- H.J.