public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] libloc: Apply patch to compile the perl module without stack protector.
@ 2020-07-19  9:22 Stefan Schantl
  2020-07-20  9:23 ` Michael Tremer
  0 siblings, 1 reply; 2+ messages in thread
From: Stefan Schantl @ 2020-07-19  9:22 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1632 bytes --]

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 lfs/libloc                                           |  3 +++
 .../libloc-0.9.3-perl-no-stack-protector.patch       | 12 ++++++++++++
 2 files changed, 15 insertions(+)
 create mode 100644 src/patches/libloc-0.9.3-perl-no-stack-protector.patch

diff --git a/lfs/libloc b/lfs/libloc
index 43af26b45..5cf3e0819 100644
--- a/lfs/libloc
+++ b/lfs/libloc
@@ -78,6 +78,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xvf $(DIR_DL)/$(DL_FILE)
 
+	# Add patch for i585 to disable the stack protector.
+	cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/libloc-0.9.3-perl-no-stack-protector.patch
+
 	cd $(DIR_APP) && ./autogen.sh
 	cd $(DIR_APP) && ./configure \
 		--prefix=/usr \
diff --git a/src/patches/libloc-0.9.3-perl-no-stack-protector.patch b/src/patches/libloc-0.9.3-perl-no-stack-protector.patch
new file mode 100644
index 000000000..b615ed902
--- /dev/null
+++ b/src/patches/libloc-0.9.3-perl-no-stack-protector.patch
@@ -0,0 +1,12 @@
+diff --git a/src/perl/Makefile.PL b/src/perl/Makefile.PL
+index 38d5390..62016ca 100644
+--- a/src/perl/Makefile.PL
++++ b/src/perl/Makefile.PL
+@@ -11,6 +11,7 @@ WriteMakefile(
+     LIBS              => ['-lloc'],
+     DEFINE            => '', # e.g., '-DHAVE_SOMETHING'
+     INC               => '-I. -I../../',
++    CCFLAGS           => '-fno-stack-protector',
+ 	# Un-comment this if you add C files to link with later:
+     # OBJECT            => '$(O_FILES)', # link all the C files too
+ );
-- 
2.20.1


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

* Re: [PATCH] libloc: Apply patch to compile the perl module without stack protector.
  2020-07-19  9:22 [PATCH] libloc: Apply patch to compile the perl module without stack protector Stefan Schantl
@ 2020-07-20  9:23 ` Michael Tremer
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2020-07-20  9:23 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 2223 bytes --]

Hello,

This isn’t really the best solution I would say, but it will at least work for now.

I suppose there is an issue in the perl build system and that either the -fstack-protector-all flag is being filtered or it links libc in a funny way.

I would propose to make this conditional to i586 because the module builds fine on all other architectures.

-Michael

P.S. Did you try adding -lssp to the linker flags?

> On 19 Jul 2020, at 10:22, Stefan Schantl <stefan.schantl(a)ipfire.org> wrote:
> 
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
> lfs/libloc                                           |  3 +++
> .../libloc-0.9.3-perl-no-stack-protector.patch       | 12 ++++++++++++
> 2 files changed, 15 insertions(+)
> create mode 100644 src/patches/libloc-0.9.3-perl-no-stack-protector.patch
> 
> diff --git a/lfs/libloc b/lfs/libloc
> index 43af26b45..5cf3e0819 100644
> --- a/lfs/libloc
> +++ b/lfs/libloc
> @@ -78,6 +78,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
> 	@$(PREBUILD)
> 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xvf $(DIR_DL)/$(DL_FILE)
> 
> +	# Add patch for i585 to disable the stack protector.
> +	cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/libloc-0.9.3-perl-no-stack-protector.patch
> +
> 	cd $(DIR_APP) && ./autogen.sh
> 	cd $(DIR_APP) && ./configure \
> 		--prefix=/usr \
> diff --git a/src/patches/libloc-0.9.3-perl-no-stack-protector.patch b/src/patches/libloc-0.9.3-perl-no-stack-protector.patch
> new file mode 100644
> index 000000000..b615ed902
> --- /dev/null
> +++ b/src/patches/libloc-0.9.3-perl-no-stack-protector.patch
> @@ -0,0 +1,12 @@
> +diff --git a/src/perl/Makefile.PL b/src/perl/Makefile.PL
> +index 38d5390..62016ca 100644
> +--- a/src/perl/Makefile.PL
> ++++ b/src/perl/Makefile.PL
> +@@ -11,6 +11,7 @@ WriteMakefile(
> +     LIBS              => ['-lloc'],
> +     DEFINE            => '', # e.g., '-DHAVE_SOMETHING'
> +     INC               => '-I. -I../../',
> ++    CCFLAGS           => '-fno-stack-protector',
> + 	# Un-comment this if you add C files to link with later:
> +     # OBJECT            => '$(O_FILES)', # link all the C files too
> + );
> -- 
> 2.20.1
> 


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

end of thread, other threads:[~2020-07-20  9:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-19  9:22 [PATCH] libloc: Apply patch to compile the perl module without stack protector Stefan Schantl
2020-07-20  9:23 ` Michael Tremer

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