From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-f196.google.com (mail-lj1-f196.google.com [209.85.208.196]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id B45A5445320 for ; Tue, 28 Jul 2020 16:27:46 +0300 (MSK) Received: by mail-lj1-f196.google.com with SMTP id q7so21132206ljm.1 for ; Tue, 28 Jul 2020 06:27:46 -0700 (PDT) From: Cyrill Gorcunov Date: Tue, 28 Jul 2020 16:27:42 +0300 Message-Id: <20200728132742.504810-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH] lua/log: add missing exports List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tml When building with LTO non exported symbols might be discarded while we have implicit use in log.lua code. Introduced by a94a9b3fd629b5abbc99a23ba527cd91e5c6ebf5 Fixes #5160 Signed-off-by: Cyrill Gorcunov --- src/exports.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/exports.h b/src/exports.h index fe3b31dba..7cf283e5b 100644 --- a/src/exports.h +++ b/src/exports.h @@ -350,6 +350,8 @@ EXPORT(PMurHash32_Result) EXPORT(port_destroy) EXPORT(random_bytes) EXPORT(_say) +EXPORT(say_logger_init) +EXPORT(say_logger_initialized) EXPORT(say_logrotate) EXPORT(say_set_log_format) EXPORT(say_set_log_level) -- 2.26.2