From 16eb780e13f00c75b55fa8c7b8a9278c62d123fb Mon Sep 17 00:00:00 2001 From: Zhang Xianyi Date: Sun, 22 Sep 2013 09:37:59 +0800 Subject: [PATCH] Refs #262. Fixed compatibility issues of GNU stack markings with PathScale EKOPath(tm) Compiler Suite: Version 4.0.12.1 --- common_alpha.h | 2 +- common_ia64.h | 2 +- common_mips64.h | 2 +- common_sparc.h | 2 +- common_x86.h | 2 +- common_x86_64.h | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/common_alpha.h b/common_alpha.h index 3b46c74ce5..845fb316af 100644 --- a/common_alpha.h +++ b/common_alpha.h @@ -151,7 +151,7 @@ static __inline int blas_quickdivide(unsigned int x, unsigned int y){ #endif #if defined(__linux__) && defined(__ELF__) -#define GNUSTACK .section .note.GNU-stack,"",%progbits +#define GNUSTACK .section .note.GNU-stack,"",@progbits #else #define GNUSTACK #endif diff --git a/common_ia64.h b/common_ia64.h index 3530e0b1d6..79b3c81675 100644 --- a/common_ia64.h +++ b/common_ia64.h @@ -380,7 +380,7 @@ static __inline int blas_quickdivide(unsigned int x, unsigned int y){ #endif #if defined(__linux__) && defined(__ELF__) -#define GNUSTACK .section .note.GNU-stack,"",%progbits +#define GNUSTACK .section .note.GNU-stack,"",@progbits #else #define GNUSTACK #endif diff --git a/common_mips64.h b/common_mips64.h index c08fb2c759..d9cdc498f0 100644 --- a/common_mips64.h +++ b/common_mips64.h @@ -236,7 +236,7 @@ REALNAME: ;\ .set nomacro #if defined(__linux__) && defined(__ELF__) -#define GNUSTACK .section .note.GNU-stack,"",%progbits +#define GNUSTACK .section .note.GNU-stack,"",@progbits #else #define GNUSTACK #endif diff --git a/common_sparc.h b/common_sparc.h index cfd27f7683..daa2e49b01 100644 --- a/common_sparc.h +++ b/common_sparc.h @@ -201,7 +201,7 @@ static __inline int blas_quickdivide(blasint x, blasint y){ REALNAME:; #if defined(__linux__) && defined(__ELF__) -#define GNUSTACK .section .note.GNU-stack,"",%progbits +#define GNUSTACK .section .note.GNU-stack,"",@progbits #else #define GNUSTACK #endif diff --git a/common_x86.h b/common_x86.h index 48517d900c..5f42843be4 100644 --- a/common_x86.h +++ b/common_x86.h @@ -303,7 +303,7 @@ static __inline int blas_quickdivide(unsigned int x, unsigned int y){ #define EPILOGUE \ .size REALNAME, .-REALNAME; \ - .section .note.GNU-stack,"",%progbits + .section .note.GNU-stack,"",@progbits #endif diff --git a/common_x86_64.h b/common_x86_64.h index 188903848b..39e5a5eb1a 100644 --- a/common_x86_64.h +++ b/common_x86_64.h @@ -374,7 +374,7 @@ static __inline int blas_quickdivide(unsigned int x, unsigned int y){ #define EPILOGUE \ .size REALNAME, .-REALNAME; \ - .section .note.GNU-stack,"",%progbits + .section .note.GNU-stack,"",@progbits #endif