Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 60a95b77 authored by Peter Foley's avatar Peter Foley Committed by Jonathan Corbet
Browse files

Documentation: fix vdso_standalone_test_x86 on 32-bit



vdso_standalone_test_x86 needs -lgcc_s to build succesfully on 32bit.

Signed-off-by: default avatarPeter Foley <pefoley2@pefoley.com>
[ Fixed missing separator issue reported by Paul Bolle <pebolle@tiscali.nl> ]
Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
parent ef0b97e3
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -10,3 +10,6 @@ always := $(hostprogs-y)
HOSTCFLAGS := -I$(objtree)/usr/include -std=gnu99
HOSTCFLAGS_vdso_standalone_test_x86.o := -fno-asynchronous-unwind-tables -fno-stack-protector
HOSTLOADLIBES_vdso_standalone_test_x86 := -nostdlib
ifeq ($(CONFIG_X86_32),y)
HOSTLOADLIBES_vdso_standalone_test_x86 += -lgcc_s
endif