diff options
author | Måns Rullgård <mans@mansr.com> | 2007-04-01 11:32:08 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-04-01 11:32:08 +0000 |
commit | 58ecc9cd04ffb518827c12d440681914e1679a8d (patch) | |
tree | d59ab0006fe9b2b6c3c94db526d4295b1595f2e3 | |
parent | 1026a8d4a74561c6682665f0527a07babca4af48 (diff) | |
download | ffmpeg-58ecc9cd04ffb518827c12d440681914e1679a8d.tar.gz |
run ebp register check in subshell so we can redirect crash message
Originally committed as revision 8583 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1411,7 +1411,7 @@ EOF # As 'i' is stored on the stack, this program will crash # if the base pointer is used to access it because the # base pointer is cleared in the inline assembly code. - check_exec <<EOF && enable ebp_available + (check_exec) <<EOF >>$logfile 2>&1 && enable ebp_available int main(){ volatile int i=0; asm volatile ( |