diff options
author | Alex Smith <alex.smith@warpsharp.info> | 2013-06-24 21:10:12 +0000 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2013-06-24 18:51:30 -0400 |
commit | 4f6b192e2ef0426298bb815e190d3724d3b237d2 (patch) | |
tree | 42a58df0695fc17c296e5826ce4f41c2cc7afde7 /configure | |
parent | 9f4a16c52ea8f2383244587ea4cb534fe7f6da49 (diff) | |
download | ffmpeg-4f6b192e2ef0426298bb815e190d3724d3b237d2.tar.gz |
configure: Do not omit frame pointers for msvc/icl debug builds
Because O1 or O2 are required to build libav with msvc/icl, this must be
explicitly set instead of just omitting Oy.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3956,6 +3956,7 @@ elif enabled pathscale; then add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF elif enabled_any msvc icl; then enabled x86_32 && disable aligned_stack + enabled_all x86_32 debug && add_cflags -Oy- if enabled icl; then # basically -fstrict-aliasing that does not work (correctly) on icl 13.x check_cpp_condition "windows.h" "__ICL < 1300" && add_cflags -Qansi-alias |