projects
/
platform
/
upstream
/
libvpx.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e4fa638
)
Fix crash on Sparc Solaris.
author
Aaron Watry
<awatry@gmail.com>
Fri, 25 Feb 2011 15:11:27 +0000
(10:11 -0500)
committer
Aaron Watry
<awatry@gmail.com>
Fri, 25 Feb 2011 15:14:10 +0000
(10:14 -0500)
Sparc on Solaris requires memory copies in reconinter.c to be aligned.
Change-Id: I6c5b75fb80d6fd501ae4b41b533c3109c2f32be2
build/make/configure.sh
patch
|
blob
|
history
diff --git
a/build/make/configure.sh
b/build/make/configure.sh
index 7234b79743618331a5047bd7cf57081a32ce85cf..ac99cf5616e24b7978b849d4aed4026ba6ca1ecd 100755
(executable)
--- a/
build/make/configure.sh
+++ b/
build/make/configure.sh
@@
-624,6
+624,10
@@
process_common_toolchain() {
# Handle Solaris variants. Solaris 10 needs -lposix4
case ${toolchain} in
+ sparc-solaris-*)
+ add_extralibs -lposix4
+ add_cflags "-DMUST_BE_ALIGNED"
+ ;;
*-solaris-*)
add_extralibs -lposix4
;;