Commit e48776f2 authored by Mark Mentovai's avatar Mark Mentovai
Browse files

64-bit Mac Chromium support for libvpx.

For 64-bit Mac Chromium, use private_extern for HIDDEN_DATA, the same as
32-bit Mac Chromium.

Change-Id: Ica0fa9e48a47409facece691ae1e39327369083c
Showing with 6 additions and 0 deletions
...@@ -230,6 +230,12 @@ ...@@ -230,6 +230,12 @@
%elifidn __OUTPUT_FORMAT__,elfx32 %elifidn __OUTPUT_FORMAT__,elfx32
%define WRT_PLT wrt ..plt %define WRT_PLT wrt ..plt
%define HIDDEN_DATA(x) x:data hidden %define HIDDEN_DATA(x) x:data hidden
%elifidn __OUTPUT_FORMAT__,macho64
%ifdef CHROMIUM
%define HIDDEN_DATA(x) x:private_extern
%else
%define HIDDEN_DATA(x) x
%endif
%else %else
%define HIDDEN_DATA(x) x %define HIDDEN_DATA(x) x
%endif %endif
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment