Skip to content

Commit 16eb780

Browse files
committed
Refs #262. Fixed compatibility issues of GNU stack markings with PathScale EKOPath(tm) Compiler Suite: Version 4.0.12.1
1 parent a746724 commit 16eb780

6 files changed

+6
-6
lines changed

common_alpha.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ static __inline int blas_quickdivide(unsigned int x, unsigned int y){
151151
#endif
152152

153153
#if defined(__linux__) && defined(__ELF__)
154-
#define GNUSTACK .section .note.GNU-stack,"",%progbits
154+
#define GNUSTACK .section .note.GNU-stack,"",@progbits
155155
#else
156156
#define GNUSTACK
157157
#endif

common_ia64.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ static __inline int blas_quickdivide(unsigned int x, unsigned int y){
380380
#endif
381381

382382
#if defined(__linux__) && defined(__ELF__)
383-
#define GNUSTACK .section .note.GNU-stack,"",%progbits
383+
#define GNUSTACK .section .note.GNU-stack,"",@progbits
384384
#else
385385
#define GNUSTACK
386386
#endif

common_mips64.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ REALNAME: ;\
236236
.set nomacro
237237

238238
#if defined(__linux__) && defined(__ELF__)
239-
#define GNUSTACK .section .note.GNU-stack,"",%progbits
239+
#define GNUSTACK .section .note.GNU-stack,"",@progbits
240240
#else
241241
#define GNUSTACK
242242
#endif

common_sparc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ static __inline int blas_quickdivide(blasint x, blasint y){
201201
REALNAME:;
202202

203203
#if defined(__linux__) && defined(__ELF__)
204-
#define GNUSTACK .section .note.GNU-stack,"",%progbits
204+
#define GNUSTACK .section .note.GNU-stack,"",@progbits
205205
#else
206206
#define GNUSTACK
207207
#endif

common_x86.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ static __inline int blas_quickdivide(unsigned int x, unsigned int y){
303303

304304
#define EPILOGUE \
305305
.size REALNAME, .-REALNAME; \
306-
.section .note.GNU-stack,"",%progbits
306+
.section .note.GNU-stack,"",@progbits
307307

308308
#endif
309309

common_x86_64.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ static __inline int blas_quickdivide(unsigned int x, unsigned int y){
374374

375375
#define EPILOGUE \
376376
.size REALNAME, .-REALNAME; \
377-
.section .note.GNU-stack,"",%progbits
377+
.section .note.GNU-stack,"",@progbits
378378

379379

380380
#endif

0 commit comments

Comments
 (0)