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 @@ -753,6 +753,9 @@ $(EXE): $(OBJECTS)
753
753
ifneq "$(CODESIGN)" ""
754
754
$(CODESIGN) -s - "$(EXE)"
755
755
endif
756
+ ifneq "$(HIDE_SWIFTMODULE)" ""
757
+ rm -f $(MODULENAME).swiftmodule
758
+ endif
756
759
else # OS = Linux
757
760
ifeq "$(HIDE_SWIFTMODULE)" ""
758
761
WRAPPED_SWIFTMODULE = $(MODULENAME).o
@@ -761,7 +764,9 @@ endif
761
764
$(EXE): $(OBJECTS)
762
765
@echo "### Linking" $(EXE)
763
766
$(SWIFTC) $(LD_EXTRAS) $(LD_SWIFTFLAGS) $(WRAPPED_SWIFTMODULE) $^ $(patsubst -g,,$(SWIFTFLAGS)) -o "$(EXE)"
764
-
767
+ ifneq "$(HIDE_SWIFTMODULE)" ""
768
+ rm -f $(MODULENAME).swiftmodule
769
+ endif
765
770
endif
766
771
767
772
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