Browse Source

Refs #262. Fixed compatibility issues of GNU stack markings with PathScale EKOPath(tm) Compiler Suite: Version 4.0.12.1

tags/v0.2.9.rc1
Zhang Xianyi 12 years ago
parent
commit
16eb780e13
6 changed files with 6 additions and 6 deletions
  1. +1
    -1
      common_alpha.h
  2. +1
    -1
      common_ia64.h
  3. +1
    -1
      common_mips64.h
  4. +1
    -1
      common_sparc.h
  5. +1
    -1
      common_x86.h
  6. +1
    -1
      common_x86_64.h

+ 1
- 1
common_alpha.h View File

@@ -151,7 +151,7 @@ REALNAME:
#endif

#if defined(__linux__) && defined(__ELF__)
#define GNUSTACK .section .note.GNU-stack,"",%progbits
#define GNUSTACK .section .note.GNU-stack,"",@progbits
#else
#define GNUSTACK
#endif


+ 1
- 1
common_ia64.h View File

@@ -380,7 +380,7 @@ REALNAME:
#endif

#if defined(__linux__) && defined(__ELF__)
#define GNUSTACK .section .note.GNU-stack,"",%progbits
#define GNUSTACK .section .note.GNU-stack,"",@progbits
#else
#define GNUSTACK
#endif


+ 1
- 1
common_mips64.h View File

@@ -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


+ 1
- 1
common_sparc.h View File

@@ -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


+ 1
- 1
common_x86.h View File

@@ -303,7 +303,7 @@ REALNAME:

#define EPILOGUE \
.size REALNAME, .-REALNAME; \
.section .note.GNU-stack,"",%progbits
.section .note.GNU-stack,"",@progbits

#endif



+ 1
- 1
common_x86_64.h View File

@@ -374,7 +374,7 @@ REALNAME:

#define EPILOGUE \
.size REALNAME, .-REALNAME; \
.section .note.GNU-stack,"",%progbits
.section .note.GNU-stack,"",@progbits


#endif


Loading…
Cancel
Save