Changeset 177718 in webkit


Ignore:
Timestamp:
Dec 23, 2014 8:43:05 PM (9 years ago)
Author:
ap@apple.com
Message:

Don't force -O1 for debug ASan builds
https://bugs.webkit.org/show_bug.cgi?id=139926

Reviewed by Darin Adler.

  • asan/asan.xcconfig:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r177703 r177718  
     12014-12-23  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Don't force -O1 for debug ASan builds
     4        https://bugs.webkit.org/show_bug.cgi?id=139926
     5
     6        Reviewed by Darin Adler.
     7
     8        * asan/asan.xcconfig:
     9
    1102014-12-23  Alexey Proskuryakov  <ap@apple.com>
    211
  • trunk/Tools/asan/asan.xcconfig

    r177703 r177718  
    66TOOLCHAINS_macosx_101100 = $(TOOLCHAINS);
    77
    8 ASAN_OTHER_CFLAGS = -fsanitize=address -O1 -fsanitize-blacklist=$(ASAN_IGNORE) -fno-omit-frame-pointer -g -DUSE_SYSTEM_MALLOC=1;
     8GCC_OPTIMIZATION_LEVEL = $(GCC_OPTIMIZATION_LEVEL_$(CONFIGURATION));
     9GCC_OPTIMIZATION_LEVEL_Debug = 0;
     10GCC_OPTIMIZATION_LEVEL_Production = 1;
     11GCC_OPTIMIZATION_LEVEL_Release = 1;
     12
     13ASAN_OTHER_CFLAGS = -fsanitize=address -fsanitize-blacklist=$(ASAN_IGNORE) -fno-omit-frame-pointer -g -DUSE_SYSTEM_MALLOC=1;
    914ASAN_OTHER_CPLUSPLUSFLAGS = $(ASAN_OTHER_CFLAGS);
    1015ASAN_OTHER_LDFLAGS = -fsanitize=address;
Note: See TracChangeset for help on using the changeset viewer.