Skip to content

Commit 960e8a5

Browse files
Merge pull request google#1646 from tomball:master
PiperOrigin-RevId: 367049201
2 parents ffa780e + 57e7ba6 commit 960e8a5

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ dist/
1313
**/xcuserdata/
1414
**/Translated/
1515

16+
# Python Generated Files
17+
*.pyc
18+
1619
# Mac System Files
1720
.DS_Store
1821

make/fat_lib_macros.mk

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -262,12 +262,10 @@ else
262262
# Targets specific to a command-line build
263263

264264
FAT_LIB_IOS_ARCHS = $(filter-out macos% maccatalyst appletv% watch%,$(J2OBJC_ARCHS))
265-
FAT_LIB_IPHONE_ARCHS = $(filter-out macos% maccatalyst appletv% watch% simulator%,$(J2OBJC_ARCHS))
266265
FAT_LIB_MAC_ARCHS = $(filter macos%,$(J2OBJC_ARCHS))
267266
FAT_LIB_WATCH_ARCHS = $(filter watch%,$(J2OBJC_ARCHS))
268267
FAT_LIB_TV_ARCHS = $(filter appletv%,$(J2OBJC_ARCHS))
269268
FAT_LIB_MAC_CATALYST_ARCH = $(filter maccatalyst,$(J2OBJC_ARCHS))
270-
FAT_LIB_SIMULATOR_ARCHS = $(filter simulator%,$(J2OBJC_ARCHS))
271269

272270
emit_library_rules = $(foreach arch,$(J2OBJC_ARCHS),\
273271
$(eval $(call arch_lib_rule,$(BUILD_DIR)/objs-$(arch),$(1),$(2)))) \
@@ -277,9 +275,6 @@ emit_library_rules = $(foreach arch,$(J2OBJC_ARCHS),\
277275
$(if $(FAT_LIB_WATCH_ARCHS),\
278276
$(eval $(call watch_lib_rule,$(1),$(FAT_LIB_WATCH_ARCHS:%=$(BUILD_DIR)/objs-%/lib$(1).a))) \
279277
$(ARCH_BUILD_WATCH_DIR)/lib$(1).a,) \
280-
$(if $(FAT_LIB_IPHONE_ARCHS),\
281-
$(eval $(call iphone_lib_rule,$(1),$(FAT_LIB_IPHONE_ARCHS:%=$(BUILD_DIR)/objs-%/lib$(1).a))) \
282-
$(ARCH_BUILD_IPHONE_DIR)/lib$(1).a,) \
283278
$(if $(FAT_LIB_MAC_ARCHS),\
284279
$(eval $(call mac_lib_rule,$(1),$(FAT_LIB_MAC_ARCHS:%=$(BUILD_DIR)/objs-%/lib$(1).a))) \
285280
$(ARCH_BUILD_MACOSX_DIR)/lib$(1).a,) \
@@ -288,9 +283,6 @@ emit_library_rules = $(foreach arch,$(J2OBJC_ARCHS),\
288283
$(if $(FAT_LIB_TV_ARCHS),\
289284
$(eval $(call tv_lib_rule,$(1),$(FAT_LIB_TV_ARCHS:%=$(BUILD_DIR)/objs-%/lib$(1).a))) \
290285
$(ARCH_BUILD_TV_DIR)/lib$(1).a,) \
291-
$(if $(FAT_LIB_SIMULATOR_ARCHS),\
292-
$(eval $(call simulator_lib_rule,$(1),$(FAT_LIB_SIMULATOR_ARCHS:%=$(BUILD_DIR)/objs-%/lib$(1).a))) \
293-
$(ARCH_BUILD_SIMULATOR_DIR)/lib$(1).a,) \
294286

295287
emit_arch_specific_compile_rules = $(foreach arch,$(J2OBJC_ARCHS),\
296288
$(call emit_compile_rules_for_arch,$(1),$(BUILD_DIR)/objs-$(arch),$(2),$(3),\

scripts/build_distribution.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ fi
7878
$ENV_CMD make test_translator
7979
ERR=$?
8080
if [ ${ERR} -ne 0 ]; then
81-
read -p "make test_translator failed, continue? " -n 1 -r
81+
read -p "make test_translator failed, continue (y/n)?" -n 1 -r
8282
if [[ ! $REPLY =~ ^[Yy]$ ]]
8383
then
8484
echo "\nquitting..."

0 commit comments

Comments
 (0)