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 4B3806EFDA; Wed, 11 May 2022 11:25:27 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org 4B3806EFDA DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tarantool.org; s=dev; t=1652257527; bh=7DyiX0h+koedgrLzmNDKvaiWld022SCXv8Jf7kTMUaM=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=iyeHMxC4YvJlLozzBosNZlPXDl2Hx1appIB7zH595PV9PQi15jPz7XmxbUPPA1rYM CvL7lZ9giDwkL9vaNpt02EyZczJSdUN32Aj9AJhRx7glsHFpIqdg+c1DCT/Qv3uQ71 fiGPLOn5Vo3UEf8FfbS7lcyAutgnRDQGSkTVq48g= Received: from mail-lf1-f54.google.com (mail-lf1-f54.google.com [209.85.167.54]) (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 F19396EFDA for ; Wed, 11 May 2022 11:25:25 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org F19396EFDA Received: by mail-lf1-f54.google.com with SMTP id p26so2181910lfh.10 for ; Wed, 11 May 2022 01:25:25 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=30Riu9wovBZ0TDYR4E31yQAKuo9thZY+l2mJ2AQt0VI=; b=ZlXTlrmhHq6G8yknnwymUeG654ThDgNcJpERl6vIShGU0W0oM8/Uiv6FsU9eUi+5/y FiuTODs0ZUyZimQjikuQOg5+jRJg3xY+So63hlGL8JNvP9R9jlSs1WppdWdM/YBQxeMq Becc0VTC45dkHgLV6mxKHgIHKymNrfCZlg/ME1tn0F3Dqc/pIrHY5G7aw3SNMq8i7zly uz+j19SyAvu98z3s9uWtgTr6KuWhJSlAzFIdl3cwm+HmjG1BqD2NpdB+DxWPSJB6AoiV 7hpbsSc5efDnunQCguMBXaFzWRga/7ZdgvjLtUGKdNpw6c2G29ruTK7qRKKuPsdXsX0V ESww== X-Gm-Message-State: AOAM532fLakKRwZJpCxwJqRLgVL2hcmo8qhtxz4LtDJwj03lqOgVTQ7N EPW62ZSgUgGVYm6Zc7dj2LxzRYNU+HMnoQ== X-Google-Smtp-Source: ABdhPJzag5GtuU2/2K/yNb/3XhGY2I9ZsyKtMg/SCUug4e0gIj5VeFLuiOKcEluIRKgJE141+evc7Q== X-Received: by 2002:a05:6512:1316:b0:473:fda3:8dc8 with SMTP id x22-20020a056512131600b00473fda38dc8mr16716943lfu.529.1652257525037; Wed, 11 May 2022 01:25:25 -0700 (PDT) Received: from localhost.localdomain ([93.175.11.199]) by smtp.gmail.com with ESMTPSA id 20-20020ac25f54000000b0047255d21167sm174724lfz.150.2022.05.11.01.25.24 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 11 May 2022 01:25:24 -0700 (PDT) X-Google-Original-From: Maxim Kokryashkin To: tarantool-patches@dev.tarantool.org, imun@tarantool.org, skaplun@tarantool.org Date: Wed, 11 May 2022 11:25:17 +0300 Message-Id: <20220511082521.389687-1-m.kokryashkin@tarantool.org> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH] sysprof: add `LUAJIT_DISABLE_SYSPROF` to Makefile 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" The Makefile.original was not properly updated for sysporf. This patch fixes this issue by adding the `LUAJIT_DISABLE_SYSPROF` option to it. Part of tarantool/tarantool#781 --- Branch: https://github.com/tarantool/luajit/tree/fckxorg/sysprof-rc-full-ci src/Makefile.original | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Makefile.original b/src/Makefile.original index 50b84bfe..dd1c6a76 100644 --- a/src/Makefile.original +++ b/src/Makefile.original @@ -116,6 +116,8 @@ XCFLAGS= # Disable the memory profiler. #XCFLAGS+= -DLUAJIT_DISABLE_MEMPROF # +# Disable the system profiler. +#XCFLAGS+= -DLUAJIT_DISABLE_SYSPROF ############################################################################## ############################################################################## -- 2.35.1