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 9268E8BCDDE; Mon, 4 Dec 2023 16:25:40 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org 9268E8BCDDE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tarantool.org; s=dev; t=1701696340; bh=sZYOu146L/32S5nW6WXuEL95ep+jmhC3MMx8CU52mSg=; 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=kCwKSLiyyTyJ4J+z3cgnf1MqFjtCKk0UubaNTSrdSKnJbl0pOf5rigxqfTBC5nfJ6 9stAz+4YpHu1Mk4rtjRKI6NpN7RXnkDm+xZFV7cEaVBq8nwDGFDkcSVCm4Xmf6Frzz vId1LejtGiQgKk+KoLuwKcOr9clM5fcq03JXPZxE= Received: from mail-lj1-f182.google.com (mail-lj1-f182.google.com [209.85.208.182]) (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 1EF158BCDDB for ; Mon, 4 Dec 2023 16:25:14 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org 1EF158BCDDB Received: by mail-lj1-f182.google.com with SMTP id 38308e7fff4ca-2c9eca5bbaeso24564081fa.3 for ; Mon, 04 Dec 2023 05:25:14 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1701696313; x=1702301113; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=yrEa1f74DxZo5jt6B4noXMbHLn1PjsFLiyQo0fgw5z0=; b=kcxULlRx0Z3iscrSsnzIRs7vSzViniCfbcNNQ/izfJg9YC8wYEwRt0ZFGCEnwmyA48 m1qL2nS9nf9ccRGxnfLl5cwCOvpRTk/Y2aLTyOmMtsjg/zwwbyXZx7bV2gf1NvlaIzPu j7qvRMs3iXzYNAL7uMpGEU8rgRLr+cWb1ljVR6tNj1LUh8mqeTQZyA0plzgA6TXHTN/x V4dyl+KhzCPllNuIPpidGhf25Ap2yYQ7MNp7un12AqiDiHfSPreQ7fxheoVuKT/ZhI/J VimJmKpHKEV4z7gNAQ7Xsd3UYVqEAsXZGBIMSytPpEixJi59dfLamtxgshuic3VY9Ksq /gvg== X-Gm-Message-State: AOJu0YyfV27TCz05JJLkD5XCQS4iaYhPK/phWBZzdh3wYYwCKdX77Ftg O/aZjrxZaS5ExMO7WUKpZQAjmZRMT2GLRg== X-Google-Smtp-Source: AGHT+IE5nLneDpFSykJHWbTe5c4tzSJeuYhQXrHRSdTm4HTK6IJUuUEB7q2UGSysJQ/fGKKrvvFPLw== X-Received: by 2002:a2e:be8e:0:b0:2c9:d862:ff31 with SMTP id a14-20020a2ebe8e000000b002c9d862ff31mr1592592ljr.82.1701696312934; Mon, 04 Dec 2023 05:25:12 -0800 (PST) Received: from fckxorg.mail.msk ([2a00:1148:b0ba:16:a3e8:bdc1:dbed:dbc8]) by smtp.gmail.com with ESMTPSA id x1-20020a2e9dc1000000b002ca09599e28sm196597ljj.107.2023.12.04.05.25.12 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 04 Dec 2023 05:25:12 -0800 (PST) X-Google-Original-From: Maxim Kokryashkin To: tarantool-patches@dev.tarantool.org, skaplun@tarantool.org, sergeyb@tarantool.org Date: Mon, 4 Dec 2023 16:24:59 +0300 Message-ID: <3964980b22230aec346de0973392c3de8d0d244d.1701696044.git.m.kokryashkin@tarantool.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH luajit 1/4] cmake: properly handle the memprof/process.lua 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" Prior to this patch, memprof/process.lua wasn't added to the dependency list as a part of the memprof parser sources. Also, it wasn't installed into the system along with other memprof sources, which breaks the profile parser. Part of tarantool/tarantool#5994 --- tools/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index b951f767..abf68423 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -14,6 +14,7 @@ else() add_custom_target(tools-parse-memprof EXCLUDE_FROM_ALL DEPENDS memprof/humanize.lua memprof/parse.lua + memprof/process.lua memprof.lua utils/avl.lua utils/bufread.lua @@ -24,6 +25,7 @@ else() install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/memprof/humanize.lua ${CMAKE_CURRENT_SOURCE_DIR}/memprof/parse.lua + ${CMAKE_CURRENT_SOURCE_DIR}/memprof/process.lua DESTINATION ${LUAJIT_DATAROOTDIR}/memprof PERMISSIONS OWNER_READ OWNER_WRITE -- 2.43.0