Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/jpeg-turbo: force fPIC for shared libraries
@ 2020-02-22 18:10 Romain Naour
  2020-02-22 18:31 ` Yann E. MORIN
  2020-03-14 14:16 ` Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Romain Naour @ 2020-02-22 18:10 UTC (permalink / raw)
  To: buildroot

When BR2_SSP_ALL is set, there is a link issue due to missing -fPIC in CFLAGS.
Set CMAKE_POSITION_INDEPENDENT_CODE=ON to add it.

This is a similar fix as for gtest package [1]

[1] https://git.buildroot.net/buildroot/commit/?id=2026621f3c60167aa8ba48e658be1b214d1347d7

Fixes:
http://autobuild.buildroot.net/results/e1f/e1f164cee16b037c0232fdda40fc16caf8f0c0af

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Murat Demirten <mdemirten@yh.com.tr>
---
 package/jpeg-turbo/jpeg-turbo.mk | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/package/jpeg-turbo/jpeg-turbo.mk b/package/jpeg-turbo/jpeg-turbo.mk
index 2767ce6de4..126b470630 100644
--- a/package/jpeg-turbo/jpeg-turbo.mk
+++ b/package/jpeg-turbo/jpeg-turbo.mk
@@ -31,6 +31,16 @@ else
 JPEG_TURBO_CONF_OPTS += -DWITH_SIMD=OFF
 endif
 
+# Ensure that jpeg-turbo is compiled with -fPIC to allow linking the static
+# libraries with dynamically linked programs. This is not a requirement
+# for most architectures but is mandatory for ARM.
+# This allow to avoid link issues with BR2_SSP_ALL:
+# jsimd_none.c.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against external symbol `__stack_chk_guard@@GLIBC_2.17'
+# can not be used when making a shared object; recompile with -fPIC
+ifeq ($(BR2_STATIC_LIBS),)
+JPEG_TURBO_CONF_OPTS += -DCMAKE_POSITION_INDEPENDENT_CODE=ON
+endif
+
 define JPEG_TURBO_REMOVE_USELESS_TOOLS
 	rm -f $(addprefix $(TARGET_DIR)/usr/bin/,cjpeg djpeg jpegtran rdjpgcom tjbench wrjpgcom)
 endef
-- 
2.24.1

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

* [Buildroot] [PATCH] package/jpeg-turbo: force fPIC for shared libraries
  2020-02-22 18:10 [Buildroot] [PATCH] package/jpeg-turbo: force fPIC for shared libraries Romain Naour
@ 2020-02-22 18:31 ` Yann E. MORIN
  2020-02-22 18:36   ` Romain Naour
  2020-03-14 14:16 ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2020-02-22 18:31 UTC (permalink / raw)
  To: buildroot

Romain, All,

On 2020-02-22 19:10 +0100, Romain Naour spake thusly:
> When BR2_SSP_ALL is set, there is a link issue due to missing -fPIC in CFLAGS.
> Set CMAKE_POSITION_INDEPENDENT_CODE=ON to add it.
> 
> This is a similar fix as for gtest package [1]
> 
> [1] https://git.buildroot.net/buildroot/commit/?id=2026621f3c60167aa8ba48e658be1b214d1347d7
> 
> Fixes:
> http://autobuild.buildroot.net/results/e1f/e1f164cee16b037c0232fdda40fc16caf8f0c0af
> 
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> Cc: Murat Demirten <mdemirten@yh.com.tr>

Applied to master, thanks.

However, one question below...

> ---
>  package/jpeg-turbo/jpeg-turbo.mk | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/package/jpeg-turbo/jpeg-turbo.mk b/package/jpeg-turbo/jpeg-turbo.mk
> index 2767ce6de4..126b470630 100644
> --- a/package/jpeg-turbo/jpeg-turbo.mk
> +++ b/package/jpeg-turbo/jpeg-turbo.mk
> @@ -31,6 +31,16 @@ else
>  JPEG_TURBO_CONF_OPTS += -DWITH_SIMD=OFF
>  endif
>  
> +# Ensure that jpeg-turbo is compiled with -fPIC to allow linking the static
> +# libraries with dynamically linked programs. This is not a requirement
> +# for most architectures but is mandatory for ARM.
> +# This allow to avoid link issues with BR2_SSP_ALL:
> +# jsimd_none.c.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against external symbol `__stack_chk_guard@@GLIBC_2.17'
> +# can not be used when making a shared object; recompile with -fPIC
> +ifeq ($(BR2_STATIC_LIBS),)
> +JPEG_TURBO_CONF_OPTS += -DCMAKE_POSITION_INDEPENDENT_CODE=ON
> +endif

Should we not be doing that in the pkg-cmake infra instead?

Regards,
Yann E. MORIN.

> +
>  define JPEG_TURBO_REMOVE_USELESS_TOOLS
>  	rm -f $(addprefix $(TARGET_DIR)/usr/bin/,cjpeg djpeg jpegtran rdjpgcom tjbench wrjpgcom)
>  endef
> -- 
> 2.24.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH] package/jpeg-turbo: force fPIC for shared libraries
  2020-02-22 18:31 ` Yann E. MORIN
@ 2020-02-22 18:36   ` Romain Naour
  0 siblings, 0 replies; 4+ messages in thread
From: Romain Naour @ 2020-02-22 18:36 UTC (permalink / raw)
  To: buildroot

Hello Yann,

Le 22/02/2020 ? 19:31, Yann E. MORIN a ?crit?:
> Romain, All,
> 
> On 2020-02-22 19:10 +0100, Romain Naour spake thusly:
>> When BR2_SSP_ALL is set, there is a link issue due to missing -fPIC in CFLAGS.
>> Set CMAKE_POSITION_INDEPENDENT_CODE=ON to add it.
>>
>> This is a similar fix as for gtest package [1]
>>
>> [1] https://git.buildroot.net/buildroot/commit/?id=2026621f3c60167aa8ba48e658be1b214d1347d7
>>
>> Fixes:
>> http://autobuild.buildroot.net/results/e1f/e1f164cee16b037c0232fdda40fc16caf8f0c0af
>>
>> Signed-off-by: Romain Naour <romain.naour@gmail.com>
>> Cc: Murat Demirten <mdemirten@yh.com.tr>
> 
> Applied to master, thanks.
> 
> However, one question below...
> 
>> ---
>>  package/jpeg-turbo/jpeg-turbo.mk | 10 ++++++++++
>>  1 file changed, 10 insertions(+)
>>
>> diff --git a/package/jpeg-turbo/jpeg-turbo.mk b/package/jpeg-turbo/jpeg-turbo.mk
>> index 2767ce6de4..126b470630 100644
>> --- a/package/jpeg-turbo/jpeg-turbo.mk
>> +++ b/package/jpeg-turbo/jpeg-turbo.mk
>> @@ -31,6 +31,16 @@ else
>>  JPEG_TURBO_CONF_OPTS += -DWITH_SIMD=OFF
>>  endif
>>  
>> +# Ensure that jpeg-turbo is compiled with -fPIC to allow linking the static
>> +# libraries with dynamically linked programs. This is not a requirement
>> +# for most architectures but is mandatory for ARM.
>> +# This allow to avoid link issues with BR2_SSP_ALL:
>> +# jsimd_none.c.o: relocation R_AARCH64_ADR_PREL_PG_HI21 against external symbol `__stack_chk_guard@@GLIBC_2.17'
>> +# can not be used when making a shared object; recompile with -fPIC
>> +ifeq ($(BR2_STATIC_LIBS),)
>> +JPEG_TURBO_CONF_OPTS += -DCMAKE_POSITION_INDEPENDENT_CODE=ON
>> +endif
> 
> Should we not be doing that in the pkg-cmake infra instead?

For now we only do this only for gtest package (and now this one).
But indeed, this could be done in pkg-cmake.

Best regards,
Romain

> 
> Regards,
> Yann E. MORIN.
> 
>> +
>>  define JPEG_TURBO_REMOVE_USELESS_TOOLS
>>  	rm -f $(addprefix $(TARGET_DIR)/usr/bin/,cjpeg djpeg jpegtran rdjpgcom tjbench wrjpgcom)
>>  endef
>> -- 
>> 2.24.1
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot at busybox.net
>> http://lists.busybox.net/mailman/listinfo/buildroot
> 

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

* [Buildroot] [PATCH] package/jpeg-turbo: force fPIC for shared libraries
  2020-02-22 18:10 [Buildroot] [PATCH] package/jpeg-turbo: force fPIC for shared libraries Romain Naour
  2020-02-22 18:31 ` Yann E. MORIN
@ 2020-03-14 14:16 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2020-03-14 14:16 UTC (permalink / raw)
  To: buildroot

>>>>> "Romain" == Romain Naour <romain.naour@gmail.com> writes:

 > When BR2_SSP_ALL is set, there is a link issue due to missing -fPIC in CFLAGS.
 > Set CMAKE_POSITION_INDEPENDENT_CODE=ON to add it.

 > This is a similar fix as for gtest package [1]

 > [1] https://git.buildroot.net/buildroot/commit/?id=2026621f3c60167aa8ba48e658be1b214d1347d7

 > Fixes:
 > http://autobuild.buildroot.net/results/e1f/e1f164cee16b037c0232fdda40fc16caf8f0c0af

 > Signed-off-by: Romain Naour <romain.naour@gmail.com>
 > Cc: Murat Demirten <mdemirten@yh.com.tr>

Committed to 2019.02.x and 2019.11.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2020-03-14 14:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-22 18:10 [Buildroot] [PATCH] package/jpeg-turbo: force fPIC for shared libraries Romain Naour
2020-02-22 18:31 ` Yann E. MORIN
2020-02-22 18:36   ` Romain Naour
2020-03-14 14:16 ` Peter Korsgaard

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