Commit 4fae9264 authored by Tom Finegan's avatar Tom Finegan
Browse files

iosbuild.sh: Add VPX_FRAMEWORK_TARGET preproc symbol

Mainly for determining the actual arch when running performance
tests.

Change-Id: Ia6a1c4fcf83e6db1bf94f3e869d146ec32df02f8
Showing with 1 addition and 0 deletions
...@@ -111,6 +111,7 @@ create_vpx_framework_config_shim() { ...@@ -111,6 +111,7 @@ create_vpx_framework_config_shim() {
for target in ${targets}; do for target in ${targets}; do
preproc_symbol=$(target_to_preproc_symbol "${target}") preproc_symbol=$(target_to_preproc_symbol "${target}")
printf " ${preproc_symbol}\n" >> "${config_file}" printf " ${preproc_symbol}\n" >> "${config_file}"
printf "#define VPX_FRAMEWORK_TARGET \"${target}\"\n" >> "${config_file}"
printf "#include \"VPX/vpx/${target}/vpx_config.h\"\n" >> "${config_file}" printf "#include \"VPX/vpx/${target}/vpx_config.h\"\n" >> "${config_file}"
printf "#elif defined" >> "${config_file}" printf "#elif defined" >> "${config_file}"
mkdir "${HEADER_DIR}/${target}" mkdir "${HEADER_DIR}/${target}"
......
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