Changeset 186057 in webkit
- Timestamp:
- Jun 28, 2015, 4:30:20 PM (10 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Tools/ChangeLog ¶
r186046 r186057 1 2015-06-28 Dan Bernstein <mitz@apple.com> 2 3 [Xcode] Use the same environment for command-line and IDE builds 4 https://bugs.webkit.org/show_bug.cgi?id=146401 5 6 Reviewed by Anders Carlsson. 7 8 * Scripts/webkitdirs.pm: 9 (XcodeOptions): Set the UseSanitizedBuildSystemEnvironment user default to YES, which makes 10 xcodebuild use the same environment Xcode uses. 11 1 12 2015-06-28 Dan Bernstein <mitz@apple.com> 2 13 -
TabularUnified trunk/Tools/Scripts/webkitdirs.pm ¶
r185710 r186057 675 675 my @asanOption = ($asanIsEnabled ? ("-xcconfig", sourceDir() . "/Tools/asan/asan.xcconfig", "ASAN_IGNORE=" . sourceDir() . "/Tools/asan/webkit-asan-ignore.txt") : ()); 676 676 677 return ( @baseProductDirOption, "-configuration", $configuration, @architectureOption, @sdkOption, @asanOption, argumentsForXcode());677 return ("-UseSanitizedBuildSystemEnvironment=YES", @baseProductDirOption, "-configuration", $configuration, @architectureOption, @sdkOption, @asanOption, argumentsForXcode()); 678 678 } 679 679
Note:
See TracChangeset
for help on using the changeset viewer.