|
From: Maran P. <ma...@li...> - 2013-06-07 07:26:52
|
Hi,
make dist failed on s390x with this error
make[3]: Entering directory `/home/maran/r13416/none/tests/mips64'
make[3]: *** No rule to make target
`shift_instructions.stdout-exp-mips64', needed by `distdir'. Stop.
make[3]: Leaving directory `/home/maran/r13416/none/tests/mips64'
make[2]: *** [distdir] Error 1
make[2]: Leaving directory `/home/maran/r13416/none/tests'
make[1]: *** [distdir] Error 1
make[1]: Leaving directory `/home/maran/r13416/none'
make: *** [distdir] Error 1
It was found that a typo in Makefile.am caused the failure.
Following change fixes the issue. ("stdout-exp" replaced with
"stdout.exp" for mips64 and mips64r2)
Index: none/tests/mips64/Makefile.am
===================================================================
--- none/tests/mips64/Makefile.am (revision 13416)
+++ none/tests/mips64/Makefile.am (working copy)
@@ -32,7 +32,7 @@
rotate_swap.stdout.exp-mips64 rotate_swap.stdout.exp-mips64r2 \
rotate_swap.stderr.exp rotate_swap.vgtest \
round.stdout.exp round.stderr.exp round.vgtest \
- shift_instructions.stdout-exp-mips64
shift_instructions.stdout-exp-mips64r2 \
+ shift_instructions.stdout.exp-mips64
shift_instructions.stdout.exp-mips64r2 \
shift_instructions.stderr.exp shift_instructions.vgtest \
test_block_size.stdout.exp test_block_size.stderr.exp \
test_block_size.vgtest \
I found that make dist failure started to take effect only after the
following commit.
On 06/02/2013 10:53 PM, sv...@va... wrote:
> petarj 2013-06-02 18:23:43 +0100 (Sun, 02 Jun 2013)
>
> New Revision: 13416
>
> Log:
> mips64: add missing line-continuation character
>
> make distclean failed for the missing character.
>
> Modified files:
> trunk/none/tests/mips64/Makefile.am
>
>
> Modified: trunk/none/tests/mips64/Makefile.am (+1 -1)
> ===================================================================
> --- trunk/none/tests/mips64/Makefile.am 2013-06-02 04:22:28 +01:00 (rev 13415)
> +++ trunk/none/tests/mips64/Makefile.am 2013-06-02 18:23:43 +01:00 (rev 13416)
> @@ -9,7 +9,7 @@
> arithmetic_instruction.vgtest \
> branch_and_jump_instructions.stdout.exp \
> branch_and_jump_instructions.stderr.exp branch_and_jump_instructions.vgtest \
> - branches.stdout.exp branches.stderr.exp branches.vgtest
> + branches.stdout.exp branches.stderr.exp branches.vgtest \
> extract_insert_bit_field.stdout.exp-mips64 \
> extract_insert_bit_field.stdout.exp-mips64r2 \
> extract_insert_bit_field.stderr.exp extract_insert_bit_field.vgtest \
>
>
> ------------------------------------------------------------------------------
> Get 100% visibility into Java/.NET code with AppDynamics Lite
> It's a free troubleshooting tool designed for production
> Get down to code-level detail for bottlenecks, with <2% overhead.
> Download for free and get started troubleshooting in minutes.
> http://p.sf.net/sfu/appdyn_d2d_ap2
> _______________________________________________
> Valgrind-developers mailing list
> Val...@li...
> https://lists.sourceforge.net/lists/listinfo/valgrind-developers
>
>
|