Skip to content
GitLab
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
1fba21a2
Commit
1fba21a2
authored
Jun 27, 2014
by
Tom Finegan
Committed by
Gerrit Code Review
Jun 27, 2014
Browse files
Merge "configure.sh: Tweak default of use_x86inc for 64-bit, non-pic, and Darwin."
parents
a5f49183
08d75a8e
Changes
1
Hide whitespace changes
Inline
Side-by-side
build/make/configure.sh
View file @
1fba21a2
...
...
@@ -1222,10 +1222,12 @@ EOF
fi
fi
# default use_x86inc to yes if pic is no or 64bit or we are not on darwin
if
[
${
tgt_isa
}
=
x86_64
-o
!
"
$pic
"
=
"yes"
-o
\
"
${
tgt_os
#darwin
}
"
=
"
${
tgt_os
}
"
]
;
then
soft_enable use_x86inc
tgt_os_no_version
=
$(
echo
"
${
tgt_os
}
"
|
tr
-d
"[0-9]"
)
# Default use_x86inc to yes when we are 64 bit, non-pic, or on any
# non-Darwin target.
if
[
"
${
tgt_isa
}
"
=
"x86_64"
]
||
[
"
${
pic
}
"
!=
"yes"
]
||
\
[
"
${
tgt_os_no_version
}
"
!=
"darwin"
]
;
then
soft_enable use_x86inc
fi
# Position Independent Code (PIC) support, for building relocatable
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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