Skip to content

Commit 3324a10

Browse files
committed
Remove module map
1 parent 9bdd52b commit 3324a10

File tree

4 files changed

+4
-15
lines changed

4 files changed

+4
-15
lines changed

Concurrency.xcodeproj/GeneratedModuleMap/ObjCBridges/module.modulemap

Lines changed: 0 additions & 4 deletions
This file was deleted.

Concurrency.xcodeproj/project.pbxproj

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@
9090
OBJ_21 /* Task.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Task.swift; sourceTree = "<group>"; };
9191
OBJ_23 /* AtomicBridges.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AtomicBridges.m; sourceTree = "<group>"; };
9292
OBJ_25 /* AtomicBridges.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtomicBridges.h; sourceTree = "<group>"; };
93-
OBJ_26 /* module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; name = module.modulemap; path = "/Users/cameronmcgorian/Documents/dev/swift-concurrency/Concurrency.xcodeproj/GeneratedModuleMap/ObjCBridges/module.modulemap"; sourceTree = "<group>"; };
9493
OBJ_29 /* AtomicBoolTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AtomicBoolTests.swift; sourceTree = "<group>"; };
9594
OBJ_30 /* AtomicIntTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AtomicIntTests.swift; sourceTree = "<group>"; };
9695
OBJ_31 /* AtomicReferenceTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AtomicReferenceTests.swift; sourceTree = "<group>"; };
@@ -175,7 +174,6 @@
175174
isa = PBXGroup;
176175
children = (
177176
OBJ_25 /* AtomicBridges.h */,
178-
OBJ_26 /* module.modulemap */,
179177
);
180178
path = include;
181179
sourceTree = "<group>";
@@ -220,7 +218,7 @@
220218
name = Products;
221219
sourceTree = BUILT_PRODUCTS_DIR;
222220
};
223-
OBJ_5 /* */ = {
221+
OBJ_5 = {
224222
isa = PBXGroup;
225223
children = (
226224
OBJ_6 /* Package.swift */,
@@ -235,7 +233,6 @@
235233
OBJ_44 /* CONTRIBUTING.md */,
236234
OBJ_45 /* LICENSE.txt */,
237235
);
238-
name = "";
239236
sourceTree = "<group>";
240237
};
241238
OBJ_7 /* Configs */ = {
@@ -340,7 +337,7 @@
340337
English,
341338
en,
342339
);
343-
mainGroup = OBJ_5 /* */;
340+
mainGroup = OBJ_5;
344341
productRefGroup = OBJ_36 /* Products */;
345342
projectDirPath = "";
346343
projectRoot = "";
@@ -489,14 +486,13 @@
489486
HEADER_SEARCH_PATHS = (
490487
"$(inherited)",
491488
"$(SRCROOT)/Sources/ObjCBridges/include",
492-
"$(SRCROOT)/Concurrency.xcodeproj/GeneratedModuleMap/ObjCBridges",
493489
);
494490
INFOPLIST_FILE = Concurrency.xcodeproj/Concurrency_Info.plist;
495491
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
496492
LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx";
497493
OTHER_CFLAGS = "$(inherited)";
498494
OTHER_LDFLAGS = "$(inherited)";
499-
OTHER_SWIFT_FLAGS = "$(inherited) -Xcc -fmodule-map-file=$(SRCROOT)/Concurrency.xcodeproj/GeneratedModuleMap/ObjCBridges/module.modulemap";
495+
OTHER_SWIFT_FLAGS = "";
500496
PRODUCT_BUNDLE_IDENTIFIER = Concurrency;
501497
PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)";
502498
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
@@ -519,14 +515,13 @@
519515
HEADER_SEARCH_PATHS = (
520516
"$(inherited)",
521517
"$(SRCROOT)/Sources/ObjCBridges/include",
522-
"$(SRCROOT)/Concurrency.xcodeproj/GeneratedModuleMap/ObjCBridges",
523518
);
524519
INFOPLIST_FILE = Concurrency.xcodeproj/Concurrency_Info.plist;
525520
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
526521
LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx";
527522
OTHER_CFLAGS = "$(inherited)";
528523
OTHER_LDFLAGS = "$(inherited)";
529-
OTHER_SWIFT_FLAGS = "$(inherited) -Xcc -fmodule-map-file=$(SRCROOT)/Concurrency.xcodeproj/GeneratedModuleMap/ObjCBridges/module.modulemap";
524+
OTHER_SWIFT_FLAGS = "";
530525
PRODUCT_BUNDLE_IDENTIFIER = Concurrency;
531526
PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)";
532527
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";

Sources/Concurrency/AtomicInt.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
import Foundation
1818
import libkern
19-
import ObjCBridges
2019

2120
/// A concurrency utility class that supports locking-free synchronization on mutating an integer
2221
/// value. Unlike using a lock, concurrent read and write accesses to this class is allowed. At

Sources/Concurrency/AtomicReference.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
import Foundation
1818
import libkern
19-
import ObjCBridges
2019

2120
/// A concurrency utility class that supports locking-free synchronization on mutating an object
2221
/// reference. Unlike using a lock, concurrent read and write accesses to this class is allowed. At

0 commit comments

Comments
 (0)