From 5f02070655b3c1f2ab50a82fd5f466aaeb7af44a Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 10 Jun 2024 11:06:30 +0200 Subject: executor: add end-to-end coverage/signal/comparisons test --- sys/targets/targets.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/targets') diff --git a/sys/targets/targets.go b/sys/targets/targets.go index 4e3e37e66..6cf5d8b9e 100644 --- a/sys/targets/targets.go +++ b/sys/targets/targets.go @@ -225,7 +225,7 @@ var List = map[string]map[string]*Target{ PtrSize: 4, PageSize: 8 << 10, Int64Alignment: 4, - CFlags: []string{"-static"}, + CFlags: []string{"-m32", "-static"}, osCommon: osCommon{ SyscallNumbers: true, Int64SyscallArgs: true, @@ -236,7 +236,7 @@ var List = map[string]map[string]*Target{ TestArch32Fork: { PtrSize: 4, PageSize: 4 << 10, - CFlags: []string{"-static-pie"}, + CFlags: []string{"-m32", "-static-pie"}, osCommon: osCommon{ SyscallNumbers: true, Int64SyscallArgs: true, -- cgit mrf-deployment