From e1c53c53d04c8693be00e00804e8e3280dc9dac6 Mon Sep 17 00:00:00 2001 From: tavianator Date: Thu, 19 Nov 2009 12:07:17 -0500 Subject: Allow PGO profiling tests to run in parallel. According to the GCC documentation, -fprofile-arcs handles concurrent executions correctly with file locking. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 9ba1193..a4069dd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -32,7 +32,7 @@ if PGO pgo: @if [ ! -d $(top_builddir)/libdimension/pgo/.libs ] || [ -z "$$(ls $(top_builddir)/libdimension/pgo/.libs/*.gcda 2>/dev/null)" ]; then \ $(MAKE) $(AM_MAKEFLAGS) -C libdimension libdimension-pgo.la && \ - $(MAKE) -j1 -C tests/libdimension check; \ + $(MAKE) $(AM_MAKEFLAGS) -C tests/libdimension check; \ fi @rename _pgo_la _la $$(find $(top_builddir)/libdimension/pgo/.libs/) -- cgit v1.2.3