From 061d3ec62707a526a83482e57d202a66f9d776cd Mon Sep 17 00:00:00 2001 From: Ismael Luceno Date: Tue, 23 Aug 2022 19:34:39 +0200 Subject: [PATCH] Test the -m32 and -m64 compiler flags before use Fixes: https://github.com/haampie/libtree/issues/78 Signed-off-by: Ismael Luceno --- tests/05_32_bits/Makefile | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/tests/05_32_bits/Makefile b/tests/05_32_bits/Makefile index 2c0bece..5628f42 100644 --- a/tests/05_32_bits/Makefile +++ b/tests/05_32_bits/Makefile @@ -3,7 +3,7 @@ LD_LIBRARY_PATH= -.PHONY: clean +.PHONY: clean check all: check @@ -21,11 +21,21 @@ exe64: lib64/libx.so exe32: lib32/libx.so echo 'extern int a(); int _start(){return a();}' | $(CC) -m32 "-Wl,-rpath,$(CURDIR)/lib64" "-Wl,-rpath,$(CURDIR)/lib32" -o $@ -nostdlib -x c - -Llib32 -lx -check: exe32 exe64 - ../../libtree exe32 - ../../libtree exe64 - clean: rm -rf lib32 lib64 exe* CURDIR ?= $(.CURDIR) + +test-flag = 2>/dev/null ${CC} -E /dev/null +test-end = && echo y || echo n +support-m32 != ${test-flag} -m32 ${test-end} +support-m64 != ${test-flag} -m64 ${test-end} + +check${support-m32:y=}:: exe32 + ../../libtree exe32 + +check${support-m64:y=}:: exe64 + ../../libtree exe64 + +check${support-m32:n=} check${support-m64:n=}:: + @echo WARNING: test skipped at ${CURDIR} 7e8e97cd4618b04e6b3'>commitdiff
AgeCommit message (Collapse)Author
2023-08-29doc: Fix a potential problem in man page generation rule.Maxim Cournoyer
Since commit ca8acad3 ("build: Add dependency on guix script for help2man targets."), the $< special Make variable in the recipe was matching scripts/guix instead of the more specific 'guix/scripts/%.scm' source. * doc/local.mk ($(srcdir)/%D%/guix-%.1): Move the scripts/guix prerequisite to the end.
2023-08-25build: Add dependency on guix script for help2man targets.Josselin Poiret
* doc/local.mk: Add dependency on guix script for help2man targets. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-11-19doc: Build more man pages.Hilton Chain
* doc/local.mk (sub_commands_mans): Add guix-container.1, guix-copy.1, guix-describe.1, guix-git.1, guix-graph.1, guix-home.1, guix-offload.1, guix-pack.1, guix-processes.1, guix-repl.1, guix-shell.1, guix-style.1. Signed-off-by: Ludovic Courtès <ludo@gnu.org>