diff options
| author | Max Horn | 2007-01-18 21:36:44 +0000 | 
|---|---|---|
| committer | Max Horn | 2007-01-18 21:36:44 +0000 | 
| commit | fb95758b818cc41a9f125f809c7441da918dd552 (patch) | |
| tree | d76d52ee99f37e1ba04606117befd2b5c9368f17 | |
| parent | 7d8ddb9a5b89b9839cd82230699049f80960a358 (diff) | |
| download | scummvm-rg350-fb95758b818cc41a9f125f809c7441da918dd552.tar.gz scummvm-rg350-fb95758b818cc41a9f125f809c7441da918dd552.tar.bz2 scummvm-rg350-fb95758b818cc41a9f125f809c7441da918dd552.zip | |
Patch #1596959 (SH and MIPS need memalign too)
svn-id: r25118
| -rwxr-xr-x | configure | 12 | 
1 files changed, 12 insertions, 0 deletions
| @@ -872,6 +872,18 @@ EOF  			# Hardcode alignment requirements for Alpha processsors  			_need_memalign=yes  			;; +		sh*) +			# Hardcode alignment requirements for SH processsors. +			# While these can emulate unaligned memory access, this +			# emulation is rather slow. +			_need_memalign=yes +			;; +		mips*) +			# Hardcode alignment requirements for MIPS processsors. +			# While these can emulate unaligned memory access, this +			# emulation is rather slow. +			_need_memalign=yes +			;;  		*)  			# Try to auto-detect....  			cat > $TMPC << EOF | 
