X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f X-Recipient: djgpp AT delorie DOT com X-Original-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=to:subject:message-id:date:from:references:in-reply-to:mime-version :from:to:cc:subject:date:message-id:reply-to; bh=WBqOI0lQ/R2205AyQxOhXIuWFYwKX+a/ZEzyh5eOzl8=; b=h56un4zVM/NJ3q0ffSavdK1ANGOBEJ96idCuzXSrApBb6tY+U109ziilz2HCVRA5i3 nN91P9leDj0noj1/2apW5lbz9Xb4g/5Ow6mriauhbs0ltapAgtxXkQILZi90oBnNxuwp 17DJ5vCne/QRYXI/WA1+WcGUEJclDPaBG1QAhM+Dtl6Tnl5//S14iqgz6sVsxtcSwlZj 0xPMmlFK08iuPlKqjXpupoYLOKquV42ZBJtgB6JJyAHh2hkYrQAQ7+Tp9RDoTLk1N1cj JAsarKbeRTnzkM//AeOPpfBouriPHIuT4G5+t1FZAzHxy03fFy8W8ie4XSYcAXYFQZmh ToBQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=to:subject:message-id:date:from:references:in-reply-to:mime-version :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=WBqOI0lQ/R2205AyQxOhXIuWFYwKX+a/ZEzyh5eOzl8=; b=fIyREU1guzhWs3PJstm5zBJdyRb+d4mvj0NMzfPWFlrzxFyza0JUGG+PO5FgYDLvpa Chlmoi8AJVbr59v6DnDEVfV9p2PKlHFMIdIU3z15tSZR1pIBqBqbtKhYdXfVHTNuNxcW A+nxS1BRoyH/n5GeUxanFlSKDLOLwl3dLZN2ejGDYJvfFUU9j6Kz52e3etxn4d//WOhT mGIDpZhxOmScxBWby0+wuT9MxkJnHTgUcONIjN4+6ViyeS7H+UkW6oEyjx/EL2rvmm8V X6i23Dy8eN6sSEuQjES9qlDO+BcP+aCs+mkORkGj9nu6zQNsTjE6bxDVKoSe9So0V2+P 4V/A== X-Gm-Message-State: AFqh2krWTczhRkS5NQYkOvs6F9H7+zAx6f6C1YivIh4/Y5d9fVC5YP+L DScmv8jpgnSbiKRM284flU+3bTK7owi6ex/s1SRNRjeH X-Google-Smtp-Source: AMrXdXtqt1omv2yNjPDrRQ07VkWBR6kmEKYSxwl+xhfBxEF8zvG5pGQyCPcDPnWXgqRibKToh9a7SN6xizWqNnHt0uo= X-Received: by 2002:a05:600c:1d25:b0:3da:fa8a:8511 with SMTP id l37-20020a05600c1d2500b003dafa8a8511mr1240003wms.185.1674371730493; Sat, 21 Jan 2023 23:15:30 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <63a56722-21d6-a368-6400-907f0cf9d01c@gmail.com> References: <63a56722-21d6-a368-6400-907f0cf9d01c AT gmail DOT com> From: "Ozkan Sezer (sezeroz AT gmail DOT com) [via djgpp AT delorie DOT com]" Date: Sun, 22 Jan 2023 10:15:29 +0300 Message-ID: Subject: Re: DXE3 with std::vector To: djgpp AT delorie DOT com Content-Type: text/plain; charset="UTF-8" Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 1/22/23, Frank Sapone (emoaddict15 AT gmail DOT com) [via djgpp AT delorie DOT com] wrote: > Hello, > > I'm working on a C++ project with DXE3 and found it cannot resolve > throw_length_error() on dlopen(). Upon inspection, this is stemming > from my use of std::vector in some places. Is there a way to resolve it > with DXE_EXPORT() without having to redo the code to not use > std::vector? Right now I'm just getting the mangled name for it, > '`__ZSt20__throw_length_errorPKc'' Do you not link to libstdc++ (and libgcc) ? If you really do and it still happens, then I don't know. Is the project open?