From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x436.google.com (mail-wr1-x436.google.com [IPv6:2a00:1450:4864:20::436]) by sourceware.org (Postfix) with ESMTPS id 4B0E7385741C for ; Sat, 21 Aug 2021 12:21:01 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 4B0E7385741C Received: by mail-wr1-x436.google.com with SMTP id k8so18206701wrn.3 for ; Sat, 21 Aug 2021 05:21:01 -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=cHbsHAybmuW2lggGL+elD/xqQK72PJ2n3RD0Vd6A9BI=; b=AxBl4ss0u8/uoMF9BgspkVWg6W1OtFm8hqKdNjzobhDnjpRAtFOw4XAFqmsEJR9B2e RuEiQJ5fvUmbf2Olnf0yB8/Ls3afd47tc8pkhNxMT9qP3WtJKSCgcJqUZh3BFHPGtp2a clRgHkHKCBDWl5j3TMkzCkPmTDGNQtA+nHMf22nIwUgo+5xaLh8R52ugs9wiSHn6Zo8Y xXGfBdVuTabTFxWonC4vQmww/ShLD+Wd0+RVtPty0H3mgN8JZ0VH8C1eUJRAVsHwPvhy qUMa9wyOSpV8SLJTeQKFVB+LhKhbll/da2KS7tiJOtf4Dmh45SeRMmZv+vhrFuDRMocc RUaA== X-Gm-Message-State: AOAM532wnyDGDUt2BxNOuuNgMq6V07GUCcvp6/5eEYz7zcuUXXVf8qHm Bp1ydJW5oDGPdnQOY/zmYBk5asGeoVbASOiRMNQ= X-Google-Smtp-Source: ABdhPJxGTG3qqAb743b3MgvzdQhGdqRyq1P+0XP4TYzVrh6CdM/CURtGo1dLAErF3TvaqWUYInSaI1Kq3aZWof0x9mg= X-Received: by 2002:a5d:6287:: with SMTP id k7mr3615082wru.321.1629548460369; Sat, 21 Aug 2021 05:21:00 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Jonathan Wakely Date: Sat, 21 Aug 2021 13:20:47 +0100 Message-ID: Subject: Re: Compile libstdc++-v3 without ABI library To: Tejas Garhewal Cc: gcc-help X-Spam-Status: No, score=-1.1 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 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: gcc-help@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-help mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Aug 2021 12:21:04 -0000 On Sat, 21 Aug 2021, 12:50 Tejas Garhewal via Gcc-help, < gcc-help@gcc.gnu.org> wrote: > I'm interested in building the GCC C++ standard library without linking > against any of the 2 ABI libraries available. > I'm not sure what you mean by ABI libraries. Do you mean libsupc++ and libc++abi? The rest of your email doesn't seem related to this. > I have the option to use no library at all for libcxx, but for reasons > beyond my control I will not be able to use libcxx > > I only wish to stick to C++2003 and actively avoid all features from C++11 > onwards including via non-standard extensions. > > Is this possible with libstdc++-v3? > Yes, just compile your code with -std=c++98 > I tried searching for the relevant mailing list but I couldn't find the > equivalent of gcc-help for libstdc++. There was only libstdc++and it is > concerned primarily with development, not helping with issues. > It's for both.