[PATCH] powerpc: Fix bad include of stdint.h in ptrace.h when -D__ASSEMBLY__

Tony Breeds tony at bakeyournoodle.com
Tue Jul 6 14:56:19 EST 2010


In commit 3162d92dfb79a0b5fc03380b8819fa5f870ebf1e (powerpc: Extended
ptrace interface) we #included stdint.h even if __ASSEMBLY__ is defined.
This broke building of libc with modern kernel headers.

---
<snip>
../sysdeps/generic/stdint.h: Assembler messages:
../sysdeps/generic/stdint.h:37: Error: Unrecognized opcode: `typedef'
../sysdeps/generic/stdint.h:38: Error: Unrecognized opcode: `typedef'
../sysdeps/generic/stdint.h:39: Error: Unrecognized opcode: `typedef'
<snip>
---

Signed-off-by: Tony Breeds <tony at bakeyournoodle.com>
---
 arch/powerpc/include/asm/ptrace.h |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/arch/powerpc/include/asm/ptrace.h b/arch/powerpc/include/asm/ptrace.h
index 9e2d84c..441179a 100644
--- a/arch/powerpc/include/asm/ptrace.h
+++ b/arch/powerpc/include/asm/ptrace.h
@@ -27,7 +27,9 @@
 #ifdef __KERNEL__
 #include <linux/types.h>
 #else
+#ifndef __ASSEMBLY__
 #include <stdint.h>
+#endif /* __ASSEMBLY__ */
 #endif
 
 #ifndef __ASSEMBLY__
-- 
1.6.6.1



More information about the Linuxppc-dev mailing list