Changeset 271260 in webkit
- Timestamp:
- Jan 7, 2021, 2:30:26 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
ChangeLog (modified) (1 diff)
-
Makefile.shared (modified) (2 diffs)
-
Source/ThirdParty/libwebrtc/ChangeLog (modified) (1 diff)
-
Source/ThirdParty/libwebrtc/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r271257 r271260 1 2021-01-07 Ryan Hostetler <rhost@apple.com> 2 3 make clean/installsrc fail: You cannot specify -alltargets and also specify individual targets. 4 https://bugs.webkit.org/show_bug.cgi?id=220370 5 rdar://72834872 6 7 Reviewed by Andy Estes. 8 9 Update hardcoded '-alltargets' to use new XCODE_TARGET variable. 10 11 * Makefile.shared: 12 1 13 2021-01-07 Monson Shao <holymonson@gmail.com> 2 14 -
trunk/Makefile.shared
r267949 r271260 103 103 echo "===== BUILDING $$(basename "$$(pwd)") ====="; \ 104 104 echo; \ 105 $1 xcodebuild $(OTHER_OPTIONS) $(XCODE_ OPTIONS) $2 | $(OUTPUT_FILTER) && exit $${PIPESTATUS[0]} \105 $1 xcodebuild $(OTHER_OPTIONS) $(XCODE_TARGET) $(XCODE_OPTIONS) $2 | $(OUTPUT_FILTER) && exit $${PIPESTATUS[0]} \ 106 106 ) 107 107 endef … … 138 138 139 139 clean: 140 ifndef XCODE_TARGET 140 141 @$(call invoke_xcode,,-alltargets clean) 142 else 143 @$(call invoke_xcode,,clean) 144 endif 141 145 142 146 installsrc: 147 ifndef XCODE_TARGET 143 148 @$(call invoke_xcode,,-alltargets installsrc SRCROOT="$(SRCROOT)$(PATH_FROM_ROOT)") 149 else 150 @$(call invoke_xcode,,installsrc SRCROOT="$(SRCROOT)$(PATH_FROM_ROOT)") 151 endif 144 152 145 153 force: ; -
trunk/Source/ThirdParty/libwebrtc/ChangeLog
r271227 r271260 1 2021-01-07 Ryan Hostetler <rhost@apple.com> 2 3 make clean/installsrc fail: You cannot specify -alltargets and also specify individual targets. 4 https://bugs.webkit.org/show_bug.cgi?id=220370 5 rdar://72834872 6 7 Reviewed by Andy Estes. 8 9 Use new XCODE_TARGET variable to set boringssl target on watchOS builds. 10 11 * Makefile: 12 1 13 2021-01-07 Youenn Fablet <youenn@apple.com> 2 14 -
trunk/Source/ThirdParty/libwebrtc/Makefile
r271037 r271260 3 3 ifneq (,$(SDKROOT)) 4 4 ifneq (,$(findstring watch,$(call TO_LOWER,$(notdir $(SDKROOT))))) 5 OTHER_OPTIONS += -target boringssl5 XCODE_TARGET = -target boringssl 6 6 endif 7 7 endif
Note:
See TracChangeset
for help on using the changeset viewer.