Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2 1/3] package/feh: Fix build issue with some older cross-compilers
@ 2017-11-15 13:27 Petr Vorel
  2017-11-15 13:27 ` [Buildroot] [PATCH v2 2/3] package/feh: Cleanup build configuration Petr Vorel
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Petr Vorel @ 2017-11-15 13:27 UTC (permalink / raw)
  To: buildroot

by adding -std=gnu11 to CFLAGS.

NOTE: make needs to have variables before make as it's required by config.mk.

Fixes:
http://autobuild.buildroot.net/results/94527fcd70fa85298c366537013c939534beead0/
http://autobuild.buildroot.net/results/bf31199cdaa18971a9b599c26fbefac73b2d6f30/
http://autobuild.buildroot.net/results/5b65c305b50664e02d5f8022278055c80739342d/
http://autobuild.buildroot.net/results/ed3b9fb8d09cd677af4b8825566877c552926ae5/

Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
---
 package/feh/feh.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/feh/feh.mk b/package/feh/feh.mk
index 3f4c410440..98e580f5bf 100644
--- a/package/feh/feh.mk
+++ b/package/feh/feh.mk
@@ -12,8 +12,8 @@ FEH_LICENSE = MIT
 FEH_LICENSE_FILES = COPYING
 
 define FEH_BUILD_CMDS
-	$(TARGET_MAKE_ENV) $(MAKE1) CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS)" \
-		-C $(@D) all
+	$(TARGET_MAKE_ENV) CFLAGS="$(TARGET_CFLAGS) -std=gnu11" $(MAKE1) \
+		CC="$(TARGET_CC) $(TARGET_LDFLAGS)" -C $(@D) all
 endef
 
 define FEH_INSTALL_TARGET_CMDS
-- 
2.15.0

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

* [Buildroot] [PATCH v2 2/3] package/feh: Cleanup build configuration
  2017-11-15 13:27 [Buildroot] [PATCH v2 1/3] package/feh: Fix build issue with some older cross-compilers Petr Vorel
@ 2017-11-15 13:27 ` Petr Vorel
  2017-11-15 13:27 ` [Buildroot] [PATCH v2 3/3] package/feh: Bump to version 2.22.2 Petr Vorel
  2017-11-15 21:09 ` [Buildroot] [PATCH v2 1/3] package/feh: Fix build issue with some older cross-compilers Thomas Petazzoni
  2 siblings, 0 replies; 6+ messages in thread
From: Petr Vorel @ 2017-11-15 13:27 UTC (permalink / raw)
  To: buildroot

* add variables before make as it's required by config.mk
* build in parallel
* use TARGET_CONFIGURE_OPTS
* cleanup FEH_INSTALL_TARGET_CMDS

Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
---
 package/feh/feh.mk | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/package/feh/feh.mk b/package/feh/feh.mk
index 98e580f5bf..e0ca21b9ca 100644
--- a/package/feh/feh.mk
+++ b/package/feh/feh.mk
@@ -12,13 +12,12 @@ FEH_LICENSE = MIT
 FEH_LICENSE_FILES = COPYING
 
 define FEH_BUILD_CMDS
-	$(TARGET_MAKE_ENV) CFLAGS="$(TARGET_CFLAGS) -std=gnu11" $(MAKE1) \
-		CC="$(TARGET_CC) $(TARGET_LDFLAGS)" -C $(@D) all
+	$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) CFLAGS="$(TARGET_CFLAGS) -std=gnu11" \
+		$(MAKE) -C $(@D) all
 endef
 
 define FEH_INSTALL_TARGET_CMDS
-	$(TARGET_MAKE_ENV) $(MAKE1) CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) " \
-		PREFIX=/usr DESTDIR=$(TARGET_DIR) -C $(@D) install
+	$(TARGET_MAKE_ENV) $(MAKE) PREFIX=/usr DESTDIR=$(TARGET_DIR) -C $(@D) install
 endef
 
 $(eval $(generic-package))
-- 
2.15.0

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

* [Buildroot] [PATCH v2 3/3] package/feh: Bump to version 2.22.2
  2017-11-15 13:27 [Buildroot] [PATCH v2 1/3] package/feh: Fix build issue with some older cross-compilers Petr Vorel
  2017-11-15 13:27 ` [Buildroot] [PATCH v2 2/3] package/feh: Cleanup build configuration Petr Vorel
@ 2017-11-15 13:27 ` Petr Vorel
  2017-11-15 21:09 ` [Buildroot] [PATCH v2 1/3] package/feh: Fix build issue with some older cross-compilers Thomas Petazzoni
  2 siblings, 0 replies; 6+ messages in thread
From: Petr Vorel @ 2017-11-15 13:27 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
---
 package/feh/feh.hash | 2 +-
 package/feh/feh.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/feh/feh.hash b/package/feh/feh.hash
index f3f7ceddd9..0f8ac8c0b0 100644
--- a/package/feh/feh.hash
+++ b/package/feh/feh.hash
@@ -1,2 +1,2 @@
 # Locally calculated after checking pgp signature
-sha256 520481c9908d999f8f7546103b78ff9b11f41d25b0938f0a22f10aaa48beef2b  feh-2.21.tar.bz2
+sha256 05a81fbe0997f6274c7617efc351647be38e5244c2624bd203459025c9a68ecd  feh-2.22.2.tar.bz2
diff --git a/package/feh/feh.mk b/package/feh/feh.mk
index e0ca21b9ca..5fa6e055d3 100644
--- a/package/feh/feh.mk
+++ b/package/feh/feh.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-FEH_VERSION = 2.21
+FEH_VERSION = 2.22.2
 FEH_SOURCE = feh-$(FEH_VERSION).tar.bz2
 FEH_SITE = http://feh.finalrewind.org
 FEH_DEPENDENCIES = libcurl imlib2 libpng xlib_libXinerama xlib_libXt
-- 
2.15.0

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

* [Buildroot] [PATCH v2 1/3] package/feh: Fix build issue with some older cross-compilers
  2017-11-15 13:27 [Buildroot] [PATCH v2 1/3] package/feh: Fix build issue with some older cross-compilers Petr Vorel
  2017-11-15 13:27 ` [Buildroot] [PATCH v2 2/3] package/feh: Cleanup build configuration Petr Vorel
  2017-11-15 13:27 ` [Buildroot] [PATCH v2 3/3] package/feh: Bump to version 2.22.2 Petr Vorel
@ 2017-11-15 21:09 ` Thomas Petazzoni
  2017-11-15 21:33   ` Petr Vorel
  2 siblings, 1 reply; 6+ messages in thread
From: Thomas Petazzoni @ 2017-11-15 21:09 UTC (permalink / raw)
  To: buildroot

Hello,

On Wed, 15 Nov 2017 14:27:52 +0100, Petr Vorel wrote:

>  define FEH_BUILD_CMDS
> -	$(TARGET_MAKE_ENV) $(MAKE1) CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS)" \
> -		-C $(@D) all
> +	$(TARGET_MAKE_ENV) CFLAGS="$(TARGET_CFLAGS) -std=gnu11" $(MAKE1) \

std=gnu11 was only added in gcc 4.7, so using this would break the
build with gcc < 4.7. According to the error message, only C99 is
needed, so could you try instead -std=c99, which is available since at
least gcc 4.2 ?

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

* [Buildroot] [PATCH v2 1/3] package/feh: Fix build issue with some older cross-compilers
  2017-11-15 21:09 ` [Buildroot] [PATCH v2 1/3] package/feh: Fix build issue with some older cross-compilers Thomas Petazzoni
@ 2017-11-15 21:33   ` Petr Vorel
  2017-11-15 21:35     ` Thomas Petazzoni
  0 siblings, 1 reply; 6+ messages in thread
From: Petr Vorel @ 2017-11-15 21:33 UTC (permalink / raw)
  To: buildroot

Hello Thomas,

> On Wed, 15 Nov 2017 14:27:52 +0100, Petr Vorel wrote:

> >  define FEH_BUILD_CMDS
> > -	$(TARGET_MAKE_ENV) $(MAKE1) CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS)" \
> > -		-C $(@D) all
> > +	$(TARGET_MAKE_ENV) CFLAGS="$(TARGET_CFLAGS) -std=gnu11" $(MAKE1) \

> std=gnu11 was only added in gcc 4.7, so using this would break the
> build with gcc < 4.7. According to the error message, only C99 is
> needed, so could you try instead -std=c99, which is available since at
> least gcc 4.2 ?

Would it be -std=gnu99 sufficient for buildroot? Or it's a problem for some compilers?
If yes, I'll patch the sources as it depends on alphasort(), which is not available on c99.


Kind regards,
Petr

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

* [Buildroot] [PATCH v2 1/3] package/feh: Fix build issue with some older cross-compilers
  2017-11-15 21:33   ` Petr Vorel
@ 2017-11-15 21:35     ` Thomas Petazzoni
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2017-11-15 21:35 UTC (permalink / raw)
  To: buildroot

Hello,

On Wed, 15 Nov 2017 22:33:04 +0100, Petr Vorel wrote:

> > std=gnu11 was only added in gcc 4.7, so using this would break the
> > build with gcc < 4.7. According to the error message, only C99 is
> > needed, so could you try instead -std=c99, which is available since at
> > least gcc 4.2 ?  
> 
> Would it be -std=gnu99 sufficient for buildroot? Or it's a problem for some compilers?
> If yes, I'll patch the sources as it depends on alphasort(), which is not available on c99.

gnu99 is available since gcc 4.2 as well, see
https://gcc.gnu.org/onlinedocs/gcc-4.2.0/gcc/Standards.html#Standards,
so gnu99 should be fine.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

end of thread, other threads:[~2017-11-15 21:35 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-15 13:27 [Buildroot] [PATCH v2 1/3] package/feh: Fix build issue with some older cross-compilers Petr Vorel
2017-11-15 13:27 ` [Buildroot] [PATCH v2 2/3] package/feh: Cleanup build configuration Petr Vorel
2017-11-15 13:27 ` [Buildroot] [PATCH v2 3/3] package/feh: Bump to version 2.22.2 Petr Vorel
2017-11-15 21:09 ` [Buildroot] [PATCH v2 1/3] package/feh: Fix build issue with some older cross-compilers Thomas Petazzoni
2017-11-15 21:33   ` Petr Vorel
2017-11-15 21:35     ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox