diff options
author | konablend <[email protected]> | 2013-01-29 20:43:10 +0000 |
---|---|---|
committer | konablend <[email protected]> | 2013-01-29 20:43:10 +0000 |
commit | 11a7f3a63bc873c07e81583c989581152d89d3f9 (patch) | |
tree | 5bf23f3957d8e2dfbf4ae5207083509a354dd7fb /make | |
parent | 63311e0c3bd1f2b2303b491348ffcab312df304c (diff) |
- xcode debug builds now use --debug=std instead of --debug=max
- amongst other things, this will build ffmpeg without asserts
and avoid an mpegvideo.c assert that seems to always trigger
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5224 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'make')
-rwxr-xr-x | make/xcodemake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/xcodemake b/make/xcodemake index 0eaab1fec..a5950811b 100755 --- a/make/xcodemake +++ b/make/xcodemake @@ -126,7 +126,7 @@ if [ -n "$reconfigure" ]; then case "$CONFIGURATION" in debug*) - debug="--debug=max --optimize=none" + debug="--debug=std --optimize=none" ;; release*|*) debug= |