File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
packages/Python/lldbsuite/test/make
test/API/lang/swift/expression/missing_type Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -769,6 +769,9 @@ $(EXE): $(OBJECTS)
769
769
ifneq "$(CODESIGN)" ""
770
770
$(CODESIGN) -s - "$(EXE)"
771
771
endif
772
+ ifneq "$(HIDE_SWIFTMODULE)" ""
773
+ rm -f $(MODULENAME).swiftmodule
774
+ endif
772
775
else # OS = Linux
773
776
ifeq "$(HIDE_SWIFTMODULE)" ""
774
777
WRAPPED_SWIFTMODULE = $(MODULENAME).o
@@ -777,7 +780,9 @@ endif
777
780
$(EXE): $(OBJECTS)
778
781
@echo "### Linking" $(EXE)
779
782
$(SWIFTC) $(LD_EXTRAS) $(LD_SWIFTFLAGS) $(WRAPPED_SWIFTMODULE) $^ $(patsubst -g,,$(SWIFTFLAGS)) -o "$(EXE)"
780
-
783
+ ifneq "$(HIDE_SWIFTMODULE)" ""
784
+ rm -f $(MODULENAME).swiftmodule
785
+ endif
781
786
endif
782
787
783
788
else # USESWIFTDRIVER = 0
Original file line number Diff line number Diff line change 1
1
SWIFT_SOURCES := main.swift
2
- SWIFTFLAGS_EXTRAS := -experimental-skip-non-inlinable-function-bodies-without-types
2
+ HIDE_SWIFTMODULE := YES
3
3
include Makefile.rules
You can’t perform that action at this time.
0 commit comments