diff options
Diffstat (limited to 'update.sh')
-rwxr-xr-x | update.sh | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -125,10 +125,20 @@ $CP crypto/compat/ui_openssl_win.c crypto/ui | |||
125 | asm_src=$libssl_src/src/crypto | 125 | asm_src=$libssl_src/src/crypto |
126 | gen_asm_stdout() { | 126 | gen_asm_stdout() { |
127 | perl $asm_src/$2 $1 > $3.tmp | 127 | perl $asm_src/$2 $1 > $3.tmp |
128 | [[ $1 == "elf" ]] && cat <<-EOF >> $3.tmp | ||
129 | #if defined(HAVE_GNU_STACK) | ||
130 | .section .note.GNU-stack,"",%progbits | ||
131 | #endif | ||
132 | EOF | ||
128 | $MV $3.tmp $3 | 133 | $MV $3.tmp $3 |
129 | } | 134 | } |
130 | gen_asm() { | 135 | gen_asm() { |
131 | perl $asm_src/$2 $1 $3.tmp | 136 | perl $asm_src/$2 $1 $3.tmp |
137 | [[ $1 == "elf" ]] && cat <<-EOF >> $3.tmp | ||
138 | #if defined(HAVE_GNU_STACK) | ||
139 | .section .note.GNU-stack,"",%progbits | ||
140 | #endif | ||
141 | EOF | ||
132 | $MV $3.tmp $3 | 142 | $MV $3.tmp $3 |
133 | } | 143 | } |
134 | for abi in elf macosx; do | 144 | for abi in elf macosx; do |