Skip to content

Commit d027704

Browse files
committed
Fixes missing arm64 compatibility
I've just missed arm64 compatibility. Works now fine with Xcode 7.2.1
1 parent d822ad2 commit d027704

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

podstuff/module.modulemap

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,20 @@ framework module SQLite {
88
// header "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/include/sqlite3.h"
99
module arm {
1010
header "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/include/sqlite3.h"
11-
link "sqlite3"
1211
requires arm
1312
}
1413

14+
module arm64 {
15+
header "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/include/sqlite3.h"
16+
requires arm64
17+
}
18+
1519
module x86 {
1620
header "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/include/sqlite3.h"
17-
link "sqlite3"
1821
requires x86
1922
}
23+
24+
link "sqlite3"
2025

2126
export *
2227
module * { export * }

0 commit comments

Comments
 (0)