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
Xiph.Org
aom-rav1e
Commits
cd82f698
Commit
cd82f698
authored
Sep 18, 2015
by
Tom Finegan
Committed by
Gerrit Code Review
Sep 18, 2015
Browse files
Merge "iosbuild: Enable PIC for x86 targets."
parents
9a8fe58c
69ceed8e
Changes
1
Hide whitespace changes
Inline
Side-by-side
build/make/iosbuild.sh
View file @
cd82f698
...
...
@@ -41,13 +41,22 @@ TARGETS="arm64-darwin-gcc
build_target
()
{
local
target
=
"
$1
"
local
old_pwd
=
"
$(
pwd
)
"
local
target_specific_flags
=
""
vlog
"***Building target:
${
target
}
***"
case
"
${
target
}
"
in
x86-
*
)
target_specific_flags
=
"--enable-pic"
vlog
"Enabled PIC for
${
target
}
"
;;
esac
mkdir
"
${
target
}
"
cd
"
${
target
}
"
eval
"
${
LIBVPX_SOURCE_DIR
}
/configure"
--target
=
"
${
target
}
"
\
${
CONFIGURE_ARGS
}
${
EXTRA_CONFIGURE_ARGS
}
${
devnull
}
${
CONFIGURE_ARGS
}
${
EXTRA_CONFIGURE_ARGS
}
${
target_specific_flags
}
\
${
devnull
}
export
DIST_DIR
eval
make
-j
${
MAKE_JOBS
}
dist
${
devnull
}
cd
"
${
old_pwd
}
"
...
...
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