From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from [87.239.111.99] (localhost [127.0.0.1]) by dev.tarantool.org (Postfix) with ESMTP id E44B1252982; Wed, 15 Feb 2023 01:32:05 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org E44B1252982 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tarantool.org; s=dev; t=1676413926; bh=COgHeoBwUyep83frQIVI/q/0XHuMbT/nZpA9g7gGQmU=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=uPpLeQ/ENIqaJPh0fZe2fN/h5V+Y+527/CL+foGVPsytXOK58TIT7XSPj0K9yYMIh bFf+TRorhrttt9JW5Sl078IhFqcg8dAbAW4OJC6PsUuTL3xYrnZ4GbIzkZ0Gha4HMy +7IeeRUof9oQGum4btDMl8qd0gclTylep5MSDSrM= Received: from mail-lj1-f176.google.com (mail-lj1-f176.google.com [209.85.208.176]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id B2BFF88D68 for ; Wed, 15 Feb 2023 01:30:42 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org B2BFF88D68 Received: by mail-lj1-f176.google.com with SMTP id d8so20059372ljq.9 for ; Tue, 14 Feb 2023 14:30:42 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=VGaMe69aOVJ8szniBwcqJVd0MZbXl02vBwI7+bDF+10=; b=btDIPzft3jNpjmuJDO8hXiG6oPQH+RWbhISW7Haf6lYcFFcGPjgkQ412v7MSsIE/rR PbqxYwTpZ+622cdxB9/r3hCygVienIqCbfQ10QJnz1mroL3NuSutn8YUJLfks42OFB1x 1cHoJ6KrGSyVeiGrtCBnLsITn6/0lrwdISOx6PERFGvAp3ElVwcgHf4reG66OlhASQMT uoTA1s8Lr3b7zDcXUBN/MolHK1z4EILgwZCEN21SUwDcxC58e0Tlxbzy5PnD7e6kUcHN HBUDaVPZfR5Yu9t1C4BesC3vYZOM7/xpGqQoxj2gxpdzGSmbG0t1NWDwdEQXuZGAGF6a U/Eg== X-Gm-Message-State: AO0yUKVojdWMMphTVpE8Sg00jf6W2/y53I/TCnrgwj1qAAnnnbgX8KzY srPtycyL7GWwTySZAXbbp9ewYYbozAw= X-Google-Smtp-Source: AK7set/3ml1qUmzdRckiF5eSfk/M+q8FYnIt38XxUrfSljULK58DU7YMA1WOuNn1qjoI5lt4E+Maqg== X-Received: by 2002:a2e:88cc:0:b0:293:2e85:117f with SMTP id a12-20020a2e88cc000000b002932e85117fmr1173527ljk.52.1676413841862; Tue, 14 Feb 2023 14:30:41 -0800 (PST) Received: from localhost.localdomain (128-69-253-162.broadband.corbina.ru. [128.69.253.162]) by smtp.gmail.com with ESMTPSA id e19-20020a2eb1d3000000b00293536083cesm413756lja.105.2023.02.14.14.30.41 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 14 Feb 2023 14:30:41 -0800 (PST) X-Google-Original-From: Maxim Kokryashkin To: tarantool-patches@dev.tarantool.org, skaplun@tarantool.org, sergos@tarantool.org Date: Wed, 15 Feb 2023 01:30:25 +0300 Message-Id: X-Mailer: git-send-email 2.39.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH luajit 3/5] Disable unreliable assertion for external frame unwinding. X-BeenThere: tarantool-patches@dev.tarantool.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Maxim Kokryashkin via Tarantool-patches Reply-To: Maxim Kokryashkin Errors-To: tarantool-patches-bounces@dev.tarantool.org Sender: "Tarantool-patches" From: Mike Pall Broken on Fedora/ARM64. Reported by Yichun Zhang. (cherry-picked from commit e957737650e060d5bf1c2909b741cc3dffe073ac) This patch disables the assertion that failed because of incorrectly constructed unwind information. That debug info generation was fixed in the scope of tarantool/tarantool#6096. This patch is backported only for consistency. Maxim Kokryashkin: * added the description for the problem Part of tarantool/tarantool#7745 Relates to tarantool/tarantool#6096 --- src/lj_err.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lj_err.c b/src/lj_err.c index c7fd9e65..f6200233 100644 --- a/src/lj_err.c +++ b/src/lj_err.c @@ -488,7 +488,9 @@ void lj_err_verify(void) ** lj_assertX(_Unwind_Find_FDE((void *)_Unwind_RaiseException, &ehb), "broken build: external frame unwinding enabled, but system libraries have no unwind tables"); */ lua_assert(_Unwind_Find_FDE((void *)lj_err_throw, &ehb)); + /* Check disabled, because of broken Fedora/ARM64. See #722. lua_assert(_Unwind_Find_FDE((void *)_Unwind_RaiseException, &ehb)); + */ } #endif -- 2.39.0