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
118b9931
Commit
118b9931
authored
Jun 11, 2012
by
John Koleszar
Committed by
Gerrit Code Review
Jun 11, 2012
Browse files
Merge "Skip AS detection for VS"
parents
538c6ea3
5d0174bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
build/make/configure.sh
View file @
118b9931
...
...
@@ -1008,7 +1008,7 @@ process_common_toolchain() {
tune_cflags
=
"-march="
;;
esac
;;
;;
gcc
*
)
add_cflags
-m
${
bits
}
add_ldflags
-m
${
bits
}
...
...
@@ -1017,7 +1017,13 @@ process_common_toolchain() {
setup_gnu_toolchain
#for 32 bit x86 builds, -O3 did not turn on this flag
enabled optimizations
&&
check_add_cflags
-fomit-frame-pointer
;;
;;
vs
*
)
# When building with Microsoft Visual Studio the assembler is
# invoked directly. Checking at configure time is unnecessary.
# Skip the check by setting AS arbitrarily
AS
=
msvs
;;
esac
case
"
${
AS
}
"
in
...
...
@@ -1026,7 +1032,7 @@ process_common_toolchain() {
which yasm
>
/dev/null 2>&1
&&
AS
=
yasm
[
"
${
AS
}
"
=
auto
-o
-z
"
${
AS
}
"
]
\
&&
die
"Neither yasm nor nasm have been found"
;;
;;
esac
log_echo
" using
$AS
"
[
"
${
AS
##*/
}
"
=
nasm
]
&&
add_asflags
-Ox
...
...
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