From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NICE_REPLY_A,NO_DNS_FOR_FROM, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from [192.168.43.69] (unknown [114.10.7.234]) by gnuweeb.org (Postfix) with ESMTPSA id E5F897E2B2; Thu, 10 Mar 2022 11:40:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1646912419; bh=q/POEDL6M0wezE8X8/8AiLVvJQW0zAPrRuXPRI2X+xA=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=TGauRgAhgTm0zUIUa8NlD+l9IHVPN+cfaNiaoHx/pXOvGcWtmGH5OGyhbPrOKVFuF QR5UDTJchHOk4R4++n+MMXy6WicZGv6GjG6exxICsIxDx1GSYPEZt9Wmw4vu6lcbZW geeP+gbpKtpxJR4nOjIvYoNj15Ay2wj+36Paut5jtUqNWmt9XdjWAR3ssKZv2hcoF4 N55vNvfz04JCS2Xwrxi5ifxb6M/5EYcslzJdpRJvB0pZ1XANj3IWjXCGxIAyS8TGJy Tyyoqrw3DDIgZbebleies7uxTa8SsVlh4zdxpjkFscAZMmKDgcSRI5bJz+ffAVg7gv 5Lg54b4R7WDNg== Message-ID: Date: Thu, 10 Mar 2022 18:40:11 +0700 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Subject: Re: [PATCH liburing v3 0/4] Changes for Makefile Content-Language: en-US To: Alviro Iskandar Setiawan , Jens Axboe Cc: Pavel Begunkov , Alviro Iskandar Setiawan , io-uring , gwml References: <20220310111231.1713588-1-alviro.iskandar@gnuweeb.org> From: Ammar Faizi In-Reply-To: <20220310111231.1713588-1-alviro.iskandar@gnuweeb.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit List-Id: On 3/10/22 6:12 PM, Alviro Iskandar Setiawan wrote: > Hello sir, > > This patchset (v3) changes Makefile. 4 patches here: > > 1. Remove -fomit-frame-pointer flag, because it's already covered > by the -O2 optimization flag. > > 2. When the header files are modified, the compiled objects are > not going to be recompiled because the header files are not > marked as a dependency for the objects. > > - Instruct the compiler to generate dependency files. > > - Include those files from src/Makefile. Ensure if any changes are > made, files that depend on the changes are recompiled. > > 3. The test binaries statically link liburing using liburing.a file. > When liburing.a is recompiled, make sure the tests are also > recompiled to ensure changes are applied to the test binary. It > makes "make clean" command optional when making changes. > > 4. Same as no. 3, but for examples. > > please review, > thx I think this series looks good. -- Ammar Faizi