From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp32.i.mail.ru (smtp32.i.mail.ru [94.100.177.92]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id DE5EE42EF5C for ; Tue, 16 Jun 2020 01:21:15 +0300 (MSK) References: <20200615140142.jgeryiqpfnhdxs55@tkn_work_nb> From: Vladislav Shpilevoy Message-ID: Date: Tue, 16 Jun 2020 00:21:13 +0200 MIME-Version: 1.0 In-Reply-To: <20200615140142.jgeryiqpfnhdxs55@tkn_work_nb> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Tarantool-patches] [PATCH 0/2] ASAN build List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Turenko Cc: tarantool-patches@dev.tarantool.org Hi! On 15/06/2020 16:01, Alexander Turenko wrote: > LGTM except broken coverage reporting: > > https://travis-ci.org/github/tarantool/tarantool/jobs/698246927 > > It looks quite similar to > https://github.com/tarantool/tarantool/commit/415c05868f95b45a56904d5aa581358aced05efe > > Maybe we should add '-o ${CMAKE_BINARY_DIR}/src/box/sql/parse.c' to > lemon call to write absolute path in #line directives, which may help to > avoid ambiguity. Thanks for noticing and for the proposed fix. I did this: - COMMAND ${EXT_BIN_DIR}/lemon -T${EXT_SRC_DIR}/lempar.c ${SQL_SRC_DIR}/parse.y + COMMAND ${EXT_BIN_DIR}/lemon -T${EXT_SRC_DIR}/lempar.c -o${SQL_BIN_DIR}/parse ${SQL_SRC_DIR}/parse.y Now parse.c contains absolute paths in #line directives. But I couldn't wait if it helped - travis is awfully slow. Lets see if it helped tomorrow, when the job will be finally done.