Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guillaume Martres
aom-rav1e
Commits
8634eaf8
Commit
8634eaf8
authored
Aug 10, 2015
by
Johann
Browse files
Only use .text sections for aout
Also do not specify alignment. Change-Id: Id4a62bfa0fc3bc56e25689b5de7796bd6e864457
parent
41a0a0cb
Changes
2
Hide whitespace changes
Inline
Side-by-side
third_party/x86inc/README.libvpx
View file @
8634eaf8
...
...
@@ -18,3 +18,4 @@ Avoid 'amdnop' when building with nasm.
Set 'private_extern' visibility for macho targets.
Copy PIC 'GLOBAL' macros from x86_abi_support.asm
Use .text instead of .rodata on macho to avoid broken tables in PIC mode.
Use .text with no alignment for aout
third_party/x86inc/x86inc.asm
View file @
8634eaf8
...
...
@@ -87,13 +87,19 @@
%ifidn __OUTPUT_FORMAT__,macho32
SECTION
.text
al
ign
=
%
1
fakegot:
%elifidn __OUTPUT_FORMAT__,aout
SECTION
.text
%else
SECTION
.rodata
al
ign
=
%
1
%endif
%endmacro
%macro SECTION_TEXT 0-1 16
SECTION
.text
al
ign
=
%
1
%ifidn __OUTPUT_FORMAT__,aout
SECTION
.text
%else
SECTION
.text
al
ign
=
%
1
%endif
%endmacro
; PIC macros are copied from vpx_ports/x86_abi_support.asm. The "define PIC"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment