All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/postgresql: can't be built with BR2_OPTIMIZE_FAST
@ 2022-04-19 19:32 Fabrice Fontaine
  2022-04-23 15:09 ` Arnout Vandecappelle
  2022-05-26  8:09 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-04-19 19:32 UTC (permalink / raw)
  To: buildroot
  Cc: Bernd Kuhls, Alexey Lukyanchuk, Asaf Kahlon, Peter Seiderer,
	Julien Corjon, Fabrice Fontaine, Nathaniel Roach, Matt Weber

postgresql can't be built with BR2_OPTIMIZE_FAST:

configure: error: do not put -ffast-math in CFLAGS

Fixes:
 - http://autobuild.buildroot.org/results/106bb61bcff5d03e44d3e2e9149c76e6705606a5

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/bandwidthd/Config.in      | 4 ++++
 package/collectd/Config.in        | 4 ++++
 package/lighttpd/Config.in        | 4 ++++
 package/php/Config.ext            | 8 ++++++++
 package/poco/Config.in            | 4 ++++
 package/postgresql/Config.in      | 4 ++++
 package/python-psycopg2/Config.in | 4 ++++
 package/qt5/qt5base/Config.in     | 4 ++++
 package/zabbix/Config.in          | 1 +
 9 files changed, 37 insertions(+)

diff --git a/package/bandwidthd/Config.in b/package/bandwidthd/Config.in
index 5a3529e0c4..7537552390 100644
--- a/package/bandwidthd/Config.in
+++ b/package/bandwidthd/Config.in
@@ -36,6 +36,7 @@ config BR2_PACKAGE_BANDWIDTHD_POSTGRESQL
 	bool "enable postgresql log target support"
 	depends on !BR2_STATIC_LIBS
 	depends on BR2_USE_WCHAR # postgresql
+	depends on !BR2_OPTIMIZE_FAST # postgresql
 	select BR2_PACKAGE_POSTGRESQL
 	help
 	  Enable support for logging the bandwidthd data to a remote
@@ -46,6 +47,9 @@ config BR2_PACKAGE_BANDWIDTHD_POSTGRESQL
 comment "postgresql support needs a toolchain w/ dynamic library, wchar"
 	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
 
+comment "postgresql support can't be built with Optimize for fast"
+	depends on !BR2_OPTIMIZE_FAST
+
 config BR2_PACKAGE_BANDWIDTHD_SQLITE3
 	bool "enable sqlite3 log storage"
 	select BR2_PACKAGE_SQLITE
diff --git a/package/collectd/Config.in b/package/collectd/Config.in
index 43eef3bf66..da8465beee 100644
--- a/package/collectd/Config.in
+++ b/package/collectd/Config.in
@@ -475,6 +475,7 @@ config BR2_PACKAGE_COLLECTD_PING
 config BR2_PACKAGE_COLLECTD_POSTGRESQL
 	bool "postgresql"
 	depends on BR2_USE_WCHAR # postgresql
+	depends on !BR2_OPTIMIZE_FAST # postgresql
 	select BR2_PACKAGE_POSTGRESQL
 	help
 	  Connects to and executes SQL statements on a PostgreSQL
@@ -485,6 +486,9 @@ config BR2_PACKAGE_COLLECTD_POSTGRESQL
 comment "postgresql support needs a toolchain w/ wchar"
 	depends on !BR2_USE_WCHAR
 
+comment "postgresql support can't be built with Optimize for fast"
+	depends on !BR2_OPTIMIZE_FAST
+
 config BR2_PACKAGE_COLLECTD_PROCESSES
 	bool "processes"
 	help
diff --git a/package/lighttpd/Config.in b/package/lighttpd/Config.in
index 6f0c927319..9522b80426 100644
--- a/package/lighttpd/Config.in
+++ b/package/lighttpd/Config.in
@@ -93,6 +93,7 @@ config BR2_PACKAGE_LIGHTTPD_PGSQL
 	bool "pgsql support"
 	depends on BR2_USE_MMU # postgresql
 	depends on BR2_USE_WCHAR # postgresql
+	depends on !BR2_OPTIMIZE_FAST # postgresql
 	select BR2_PACKAGE_POSTGRESQL
 	help
 	  Enable postgres support for lighttpd mod_vhostdb_pgsql.
@@ -101,6 +102,9 @@ comment "pgsql support needs a toolchain w/ wchar"
 	depends on BR2_USE_MMU
 	depends on !BR2_USE_WCHAR
 
+comment "pgsql support can't be built with Optimize for fast"
+	depends on !BR2_OPTIMIZE_FAST
+
 config BR2_PACKAGE_LIGHTTPD_WEBDAV
 	bool "webdav support"
 	select BR2_PACKAGE_LIBXML2
diff --git a/package/php/Config.ext b/package/php/Config.ext
index 5da5d8bed9..e4aced66df 100644
--- a/package/php/Config.ext
+++ b/package/php/Config.ext
@@ -141,6 +141,7 @@ config BR2_PACKAGE_PHP_EXT_PGSQL
 	depends on BR2_USE_MMU # postgresql
 	depends on !BR2_STATIC_LIBS
 	depends on BR2_USE_WCHAR # postgresql
+	depends on !BR2_OPTIMIZE_FAST # postgresql
 	select BR2_PACKAGE_POSTGRESQL
 	help
 	  PostgreSQL support
@@ -149,6 +150,9 @@ comment "PostgreSQL extension needs a toolchain w/ dynamic library, wchar"
 	depends on BR2_USE_MMU
 	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
 
+comment "PostgreSQL extension can't be built with Optimize for fast"
+	depends on !BR2_OPTIMIZE_FAST
+
 config BR2_PACKAGE_PHP_EXT_SQLITE
 	bool "SQLite3"
 	select BR2_PACKAGE_SQLITE
@@ -172,6 +176,7 @@ config BR2_PACKAGE_PHP_EXT_PDO_POSTGRESQL
 	depends on BR2_USE_MMU # postgresql
 	depends on !BR2_STATIC_LIBS
 	depends on BR2_USE_WCHAR # postgresql
+	depends on !BR2_OPTIMIZE_FAST # postgresql
 	select BR2_PACKAGE_POSTGRESQL
 	help
 	  PDO driver for PostgreSQL
@@ -180,6 +185,9 @@ comment "PostgreSQL drivers need a toolchain w/ wchar, dynamic library"
 	depends on BR2_USE_MMU
 	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
 
+comment "PostgreSQL drivers can't be built with Optimize for fast"
+	depends on !BR2_OPTIMIZE_FAST
+
 config BR2_PACKAGE_PHP_EXT_PDO_SQLITE
 	bool "SQLite3"
 	select BR2_PACKAGE_SQLITE
diff --git a/package/poco/Config.in b/package/poco/Config.in
index 699495a241..d2852ba03e 100644
--- a/package/poco/Config.in
+++ b/package/poco/Config.in
@@ -52,9 +52,13 @@ config BR2_PACKAGE_POCO_DATA_MYSQL
 config BR2_PACKAGE_POCO_DATA_PGSQL
 	bool "Data/PostgreSQL"
 	depends on BR2_USE_MMU # postgresql
+	depends on !BR2_OPTIMIZE_FAST # postgresql
 	select BR2_PACKAGE_POCO_DATA
 	select BR2_PACKAGE_POSTGRESQL
 
+comment "Data/PostgreSQL can't be built with Optimize for fast"
+	depends on !BR2_OPTIMIZE_FAST
+
 config BR2_PACKAGE_POCO_DATA_SQLITE
 	bool "Data/SQLite"
 	select BR2_PACKAGE_POCO_DATA
diff --git a/package/postgresql/Config.in b/package/postgresql/Config.in
index b42b219558..476427d534 100644
--- a/package/postgresql/Config.in
+++ b/package/postgresql/Config.in
@@ -6,6 +6,7 @@ config BR2_PACKAGE_POSTGRESQL
 	# postgresql is unlikely to be used in a pure statically
 	# linked environment.
 	depends on !BR2_STATIC_LIBS
+	depends on !BR2_OPTIMIZE_FAST
 	select BR2_PACKAGE_LIBOPENSSL_ENABLE_BLOWFISH if BR2_PACKAGE_LIBOPENSSL
 	select BR2_PACKAGE_LIBOPENSSL_ENABLE_CAST if BR2_PACKAGE_LIBOPENSSL
 	select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
@@ -34,3 +35,6 @@ endif
 comment "postgresql needs a toolchain w/ dynamic library, wchar"
 	depends on BR2_USE_MMU
 	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
+
+comment "postgresql can't be built with Optimize for fast"
+	depends on !BR2_OPTIMIZE_FAST
diff --git a/package/python-psycopg2/Config.in b/package/python-psycopg2/Config.in
index ec27d706de..361c40cfa9 100644
--- a/package/python-psycopg2/Config.in
+++ b/package/python-psycopg2/Config.in
@@ -1,6 +1,7 @@
 config BR2_PACKAGE_PYTHON_PSYCOPG2
 	bool "python-psycopg2"
 	depends on BR2_USE_WCHAR # postgresql
+	depends on !BR2_OPTIMIZE_FAST # postgresql
 	select BR2_PACKAGE_POSTGRESQL
 	help
 	  Psycopg is the most popular PostgreSQL database adapter for
@@ -24,3 +25,6 @@ config BR2_PACKAGE_PYTHON_PSYCOPG2
 
 comment "python-psycopg2 needs a toolchain w/ wchar"
 	depends on !BR2_USE_WCHAR
+
+comment "python-psycopg2 can't be built with Optimize for fast"
+	depends on !BR2_OPTIMIZE_FAST
diff --git a/package/qt5/qt5base/Config.in b/package/qt5/qt5base/Config.in
index 601438d2fe..6f2309dffd 100644
--- a/package/qt5/qt5base/Config.in
+++ b/package/qt5/qt5base/Config.in
@@ -74,6 +74,7 @@ config BR2_PACKAGE_QT5BASE_PSQL
 	depends on BR2_USE_MMU # postgresql
 	depends on !BR2_STATIC_LIBS
 	depends on BR2_USE_WCHAR # postgresql
+	depends on !BR2_OPTIMIZE_FAST # postgresql
 	select BR2_PACKAGE_POSTGRESQL
 	help
 	  Build PostgreSQL plugin
@@ -83,6 +84,9 @@ comment "PostgreSQL plugin needs a toolchain w/ wchar, dynamic library"
 	depends on BR2_USE_MMU
 	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
 
+comment "PostgreSQL plugin can't be built with Optimize for fast"
+	depends on !BR2_OPTIMIZE_FAST
+
 choice
 	prompt "SQLite 3 support"
 	default BR2_PACKAGE_QT5BASE_SQLITE_NONE
diff --git a/package/zabbix/Config.in b/package/zabbix/Config.in
index 6f8a952936..0f7a0b0003 100644
--- a/package/zabbix/Config.in
+++ b/package/zabbix/Config.in
@@ -45,6 +45,7 @@ config BR2_PACKAGE_ZABBIX_SERVER_POSTGRESQL
 	bool "postgresql"
 	depends on BR2_USE_WCHAR # postgresql
 	depends on !BR2_STATIC_LIBS # postgresql
+	depends on !BR2_OPTIMIZE_FAST # postgresql
 	select BR2_PACKAGE_POSTGRESQL
 
 endchoice
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/postgresql: can't be built with BR2_OPTIMIZE_FAST
  2022-04-19 19:32 [Buildroot] [PATCH 1/1] package/postgresql: can't be built with BR2_OPTIMIZE_FAST Fabrice Fontaine
@ 2022-04-23 15:09 ` Arnout Vandecappelle
  2022-05-26  8:09 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2022-04-23 15:09 UTC (permalink / raw)
  To: Fabrice Fontaine, buildroot
  Cc: Bernd Kuhls, Alexey Lukyanchuk, Asaf Kahlon, Peter Seiderer,
	Julien Corjon, Nathaniel Roach, Matt Weber



On 19/04/2022 21:32, Fabrice Fontaine wrote:
> postgresql can't be built with BR2_OPTIMIZE_FAST:
> 
> configure: error: do not put -ffast-math in CFLAGS
> 
> Fixes:
>   - http://autobuild.buildroot.org/results/106bb61bcff5d03e44d3e2e9149c76e6705606a5
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
>   package/bandwidthd/Config.in      | 4 ++++
>   package/collectd/Config.in        | 4 ++++
>   package/lighttpd/Config.in        | 4 ++++
>   package/php/Config.ext            | 8 ++++++++
>   package/poco/Config.in            | 4 ++++
>   package/postgresql/Config.in      | 4 ++++
>   package/python-psycopg2/Config.in | 4 ++++
>   package/qt5/qt5base/Config.in     | 4 ++++
>   package/zabbix/Config.in          | 1 +
>   9 files changed, 37 insertions(+)
> 
> diff --git a/package/bandwidthd/Config.in b/package/bandwidthd/Config.in
> index 5a3529e0c4..7537552390 100644
> --- a/package/bandwidthd/Config.in
> +++ b/package/bandwidthd/Config.in
> @@ -36,6 +36,7 @@ config BR2_PACKAGE_BANDWIDTHD_POSTGRESQL
>   	bool "enable postgresql log target support"
>   	depends on !BR2_STATIC_LIBS
>   	depends on BR2_USE_WCHAR # postgresql
> +	depends on !BR2_OPTIMIZE_FAST # postgresql
>   	select BR2_PACKAGE_POSTGRESQL
>   	help
>   	  Enable support for logging the bandwidthd data to a remote
> @@ -46,6 +47,9 @@ config BR2_PACKAGE_BANDWIDTHD_POSTGRESQL
>   comment "postgresql support needs a toolchain w/ dynamic library, wchar"
>   	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
>   
> +comment "postgresql support can't be built with Optimize for fast"
> +	depends on !BR2_OPTIMIZE_FAST
> +
>   config BR2_PACKAGE_BANDWIDTHD_SQLITE3
>   	bool "enable sqlite3 log storage"
>   	select BR2_PACKAGE_SQLITE
> diff --git a/package/collectd/Config.in b/package/collectd/Config.in
> index 43eef3bf66..da8465beee 100644
> --- a/package/collectd/Config.in
> +++ b/package/collectd/Config.in
> @@ -475,6 +475,7 @@ config BR2_PACKAGE_COLLECTD_PING
>   config BR2_PACKAGE_COLLECTD_POSTGRESQL
>   	bool "postgresql"
>   	depends on BR2_USE_WCHAR # postgresql
> +	depends on !BR2_OPTIMIZE_FAST # postgresql
>   	select BR2_PACKAGE_POSTGRESQL
>   	help
>   	  Connects to and executes SQL statements on a PostgreSQL
> @@ -485,6 +486,9 @@ config BR2_PACKAGE_COLLECTD_POSTGRESQL
>   comment "postgresql support needs a toolchain w/ wchar"
>   	depends on !BR2_USE_WCHAR
>   
> +comment "postgresql support can't be built with Optimize for fast"
> +	depends on !BR2_OPTIMIZE_FAST
> +
>   config BR2_PACKAGE_COLLECTD_PROCESSES
>   	bool "processes"
>   	help
> diff --git a/package/lighttpd/Config.in b/package/lighttpd/Config.in
> index 6f0c927319..9522b80426 100644
> --- a/package/lighttpd/Config.in
> +++ b/package/lighttpd/Config.in
> @@ -93,6 +93,7 @@ config BR2_PACKAGE_LIGHTTPD_PGSQL
>   	bool "pgsql support"
>   	depends on BR2_USE_MMU # postgresql
>   	depends on BR2_USE_WCHAR # postgresql
> +	depends on !BR2_OPTIMIZE_FAST # postgresql
>   	select BR2_PACKAGE_POSTGRESQL
>   	help
>   	  Enable postgres support for lighttpd mod_vhostdb_pgsql.
> @@ -101,6 +102,9 @@ comment "pgsql support needs a toolchain w/ wchar"
>   	depends on BR2_USE_MMU
>   	depends on !BR2_USE_WCHAR
>   
> +comment "pgsql support can't be built with Optimize for fast"
> +	depends on !BR2_OPTIMIZE_FAST
> +
>   config BR2_PACKAGE_LIGHTTPD_WEBDAV
>   	bool "webdav support"
>   	select BR2_PACKAGE_LIBXML2
> diff --git a/package/php/Config.ext b/package/php/Config.ext
> index 5da5d8bed9..e4aced66df 100644
> --- a/package/php/Config.ext
> +++ b/package/php/Config.ext
> @@ -141,6 +141,7 @@ config BR2_PACKAGE_PHP_EXT_PGSQL
>   	depends on BR2_USE_MMU # postgresql
>   	depends on !BR2_STATIC_LIBS
>   	depends on BR2_USE_WCHAR # postgresql
> +	depends on !BR2_OPTIMIZE_FAST # postgresql
>   	select BR2_PACKAGE_POSTGRESQL
>   	help
>   	  PostgreSQL support
> @@ -149,6 +150,9 @@ comment "PostgreSQL extension needs a toolchain w/ dynamic library, wchar"
>   	depends on BR2_USE_MMU
>   	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
>   
> +comment "PostgreSQL extension can't be built with Optimize for fast"
> +	depends on !BR2_OPTIMIZE_FAST
> +
>   config BR2_PACKAGE_PHP_EXT_SQLITE
>   	bool "SQLite3"
>   	select BR2_PACKAGE_SQLITE
> @@ -172,6 +176,7 @@ config BR2_PACKAGE_PHP_EXT_PDO_POSTGRESQL
>   	depends on BR2_USE_MMU # postgresql
>   	depends on !BR2_STATIC_LIBS
>   	depends on BR2_USE_WCHAR # postgresql
> +	depends on !BR2_OPTIMIZE_FAST # postgresql
>   	select BR2_PACKAGE_POSTGRESQL
>   	help
>   	  PDO driver for PostgreSQL
> @@ -180,6 +185,9 @@ comment "PostgreSQL drivers need a toolchain w/ wchar, dynamic library"
>   	depends on BR2_USE_MMU
>   	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
>   
> +comment "PostgreSQL drivers can't be built with Optimize for fast"
> +	depends on !BR2_OPTIMIZE_FAST
> +
>   config BR2_PACKAGE_PHP_EXT_PDO_SQLITE
>   	bool "SQLite3"
>   	select BR2_PACKAGE_SQLITE
> diff --git a/package/poco/Config.in b/package/poco/Config.in
> index 699495a241..d2852ba03e 100644
> --- a/package/poco/Config.in
> +++ b/package/poco/Config.in
> @@ -52,9 +52,13 @@ config BR2_PACKAGE_POCO_DATA_MYSQL
>   config BR2_PACKAGE_POCO_DATA_PGSQL
>   	bool "Data/PostgreSQL"
>   	depends on BR2_USE_MMU # postgresql
> +	depends on !BR2_OPTIMIZE_FAST # postgresql
>   	select BR2_PACKAGE_POCO_DATA
>   	select BR2_PACKAGE_POSTGRESQL
>   
> +comment "Data/PostgreSQL can't be built with Optimize for fast"
> +	depends on !BR2_OPTIMIZE_FAST
> +
>   config BR2_PACKAGE_POCO_DATA_SQLITE
>   	bool "Data/SQLite"
>   	select BR2_PACKAGE_POCO_DATA
> diff --git a/package/postgresql/Config.in b/package/postgresql/Config.in
> index b42b219558..476427d534 100644
> --- a/package/postgresql/Config.in
> +++ b/package/postgresql/Config.in
> @@ -6,6 +6,7 @@ config BR2_PACKAGE_POSTGRESQL
>   	# postgresql is unlikely to be used in a pure statically
>   	# linked environment.
>   	depends on !BR2_STATIC_LIBS
> +	depends on !BR2_OPTIMIZE_FAST
>   	select BR2_PACKAGE_LIBOPENSSL_ENABLE_BLOWFISH if BR2_PACKAGE_LIBOPENSSL
>   	select BR2_PACKAGE_LIBOPENSSL_ENABLE_CAST if BR2_PACKAGE_LIBOPENSSL
>   	select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
> @@ -34,3 +35,6 @@ endif
>   comment "postgresql needs a toolchain w/ dynamic library, wchar"
>   	depends on BR2_USE_MMU
>   	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
> +
> +comment "postgresql can't be built with Optimize for fast"
> +	depends on !BR2_OPTIMIZE_FAST
> diff --git a/package/python-psycopg2/Config.in b/package/python-psycopg2/Config.in
> index ec27d706de..361c40cfa9 100644
> --- a/package/python-psycopg2/Config.in
> +++ b/package/python-psycopg2/Config.in
> @@ -1,6 +1,7 @@
>   config BR2_PACKAGE_PYTHON_PSYCOPG2
>   	bool "python-psycopg2"
>   	depends on BR2_USE_WCHAR # postgresql
> +	depends on !BR2_OPTIMIZE_FAST # postgresql
>   	select BR2_PACKAGE_POSTGRESQL
>   	help
>   	  Psycopg is the most popular PostgreSQL database adapter for
> @@ -24,3 +25,6 @@ config BR2_PACKAGE_PYTHON_PSYCOPG2
>   
>   comment "python-psycopg2 needs a toolchain w/ wchar"
>   	depends on !BR2_USE_WCHAR
> +
> +comment "python-psycopg2 can't be built with Optimize for fast"
> +	depends on !BR2_OPTIMIZE_FAST
> diff --git a/package/qt5/qt5base/Config.in b/package/qt5/qt5base/Config.in
> index 601438d2fe..6f2309dffd 100644
> --- a/package/qt5/qt5base/Config.in
> +++ b/package/qt5/qt5base/Config.in
> @@ -74,6 +74,7 @@ config BR2_PACKAGE_QT5BASE_PSQL
>   	depends on BR2_USE_MMU # postgresql
>   	depends on !BR2_STATIC_LIBS
>   	depends on BR2_USE_WCHAR # postgresql
> +	depends on !BR2_OPTIMIZE_FAST # postgresql
>   	select BR2_PACKAGE_POSTGRESQL
>   	help
>   	  Build PostgreSQL plugin
> @@ -83,6 +84,9 @@ comment "PostgreSQL plugin needs a toolchain w/ wchar, dynamic library"
>   	depends on BR2_USE_MMU
>   	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
>   
> +comment "PostgreSQL plugin can't be built with Optimize for fast"
> +	depends on !BR2_OPTIMIZE_FAST
> +
>   choice
>   	prompt "SQLite 3 support"
>   	default BR2_PACKAGE_QT5BASE_SQLITE_NONE
> diff --git a/package/zabbix/Config.in b/package/zabbix/Config.in
> index 6f8a952936..0f7a0b0003 100644
> --- a/package/zabbix/Config.in
> +++ b/package/zabbix/Config.in
> @@ -45,6 +45,7 @@ config BR2_PACKAGE_ZABBIX_SERVER_POSTGRESQL
>   	bool "postgresql"
>   	depends on BR2_USE_WCHAR # postgresql
>   	depends on !BR2_STATIC_LIBS # postgresql
> +	depends on !BR2_OPTIMIZE_FAST # postgresql
>   	select BR2_PACKAGE_POSTGRESQL
>   
>   endchoice
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/postgresql: can't be built with BR2_OPTIMIZE_FAST
  2022-04-19 19:32 [Buildroot] [PATCH 1/1] package/postgresql: can't be built with BR2_OPTIMIZE_FAST Fabrice Fontaine
  2022-04-23 15:09 ` Arnout Vandecappelle
@ 2022-05-26  8:09 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-05-26  8:09 UTC (permalink / raw)
  To: Fabrice Fontaine
  Cc: Bernd Kuhls, Alexey Lukyanchuk, Asaf Kahlon, Peter Seiderer,
	Julien Corjon, buildroot, Nathaniel Roach, Matt Weber

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > postgresql can't be built with BR2_OPTIMIZE_FAST:
 > configure: error: do not put -ffast-math in CFLAGS

 > Fixes:
 >  - http://autobuild.buildroot.org/results/106bb61bcff5d03e44d3e2e9149c76e6705606a5

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-05-26  8:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-19 19:32 [Buildroot] [PATCH 1/1] package/postgresql: can't be built with BR2_OPTIMIZE_FAST Fabrice Fontaine
2022-04-23 15:09 ` Arnout Vandecappelle
2022-05-26  8:09 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.