Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mlR8j-0005Q3-8H for pgsql-pkg-debian@arkaria.postgresql.org; Fri, 12 Nov 2021 07:38:25 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.92) (envelope-from ) id 1mlR8i-0007N9-8e for pgsql-pkg-debian@arkaria.postgresql.org; Fri, 12 Nov 2021 07:38:24 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mlIWk-0006Xa-UA for pgsql-pkg-debian@lists.postgresql.org; Thu, 11 Nov 2021 22:26:38 +0000 Received: from smtp-fw-6002.amazon.com ([52.95.49.90]) by makus.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mlIWi-00042a-Nh for pgsql-pkg-debian@postgresql.org; Thu, 11 Nov 2021 22:26:37 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=amazon.com; i=@amazon.com; q=dns/txt; s=amazon201209; t=1636669597; x=1668205597; h=from:to:cc:date:message-id:references:in-reply-to: content-transfer-encoding:mime-version:subject; bh=yPXXqkMwc3ucF2RJReAOQjzELehTM+7OSL8Yfg8RzxQ=; b=VxTcW2LRn/kf3gxdXTLg+L1jDVclKSZngedMq4NBNA3Io4InOId4MFrN /IDpa5Npww2Ml5aucYNz0Gur5CNwsdeYa1I9B4cvcr065o8+NLDmRy2II Ljihh9RZXPxUedbakE14CoLNEvzC5t4OkmkhIL6fmNy3pJdRxvjMoHYdm E=; X-IronPort-AV: E=Sophos;i="5.87,227,1631577600"; d="scan'208";a="154511733" Subject: Re: [PATCH] audo-detect and use -moutline-atomics compilation flag for aarch64 Thread-Topic: [PATCH] audo-detect and use -moutline-atomics compilation flag for aarch64 Received: from iad12-co-svc-p1-lb1-vlan2.amazon.com (HELO email-inbound-relay-iad-1e-fc41acad.us-east-1.amazon.com) ([10.43.8.2]) by smtp-border-fw-6002.iad6.amazon.com with ESMTP; 11 Nov 2021 22:26:36 +0000 Received: from EX13MTAUWB001.ant.amazon.com (iad12-ws-svc-p26-lb9-vlan3.iad.amazon.com [10.40.163.38]) by email-inbound-relay-iad-1e-fc41acad.us-east-1.amazon.com (Postfix) with ESMTPS id 85424C0973; Thu, 11 Nov 2021 22:26:35 +0000 (UTC) Received: from EX13D02UWB001.ant.amazon.com (10.43.161.240) by EX13MTAUWB001.ant.amazon.com (10.43.161.249) with Microsoft SMTP Server (TLS) id 15.0.1497.26; Thu, 11 Nov 2021 22:26:35 +0000 Received: from EX13D01UWB002.ant.amazon.com (10.43.161.136) by EX13D02UWB001.ant.amazon.com (10.43.161.240) with Microsoft SMTP Server (TLS) id 15.0.1497.26; Thu, 11 Nov 2021 22:26:34 +0000 Received: from EX13D01UWB002.ant.amazon.com ([10.43.161.136]) by EX13d01UWB002.ant.amazon.com ([10.43.161.136]) with mapi id 15.00.1497.026; Thu, 11 Nov 2021 22:26:34 +0000 From: "Pop, Sebastian" To: Christoph Berg CC: PostgreSQL in Debian , "Saidi, Ali" , "Csoma, Csaba" Thread-Index: AQHX1xz/aMnwG7BEBkCMiUUHc3Ygaav+jI+UgAAEIoCAAAQRQYAAO+QAgAAFYCyAAAJLlYAADlmA Date: Thu, 11 Nov 2021 22:26:34 +0000 Message-ID: <1636669594714.41068@amazon.com> References: <1636497120606.54267@amazon.com> <1635266397152.45198@amazon.com> <1636650661046.35954@amazon.com> <1636652282183.80790@amazon.com>,,<1636665927494.4426@amazon.com>,<1636667644644.16019@amazon.com> In-Reply-To: <1636667644644.16019@amazon.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ms-exchange-transport-fromentityheader: Hosted x-originating-ip: [10.43.162.153] Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk sudo apt install build-essential libreadline-dev zlib1g-dev bison flex=0A= > git clone https://github.com/postgres/postgres=0A= > cd postgres=0A= > patch -p1 < a.diff=0A= > autoconf=0A= ./configure=0A= > make=0A= > make check-world=0A= >=0A= > All checks passed on a c6g Graviton2 instance.=0A= =0A= I also run the above steps on bionic - ubuntu 18.04 - to check that the pat= ch passes when gcc does not have the -moutline-atomics flag.=0A= All checks pass on bionic on a c6g instance.=0A= Thanks Ali for recommending the extra test.=0A= =0A= Sebastian=