Skip to content

Commit 2611dcd

Browse files
Gonzalo Larraldephausler
Gonzalo Larralde
authored andcommitted
Android target issues (swiftlang#755)
* Adding checkint shims for 32-bits also. * Removing line changed in a possible failed diff apply. * Adjusting system includes to bionic. * Socks stream is a define to a number literal in bionic. * getpagesize() should be used for android to get NSPageSize.
1 parent 42b9a30 commit 2611dcd

File tree

7 files changed

+12
-5
lines changed

7 files changed

+12
-5
lines changed

CoreFoundation/Base.subproj/CFSortFunctions.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,10 @@ enum {
4848
#define __check_int64_div(x, y, err) (x / y)
4949
#define __check_uint64_div(x, y, err) (x / y)
5050

51-
#define __checkint_int64_mul(x, y, err) (x * y)
52-
#define __checkint_uint64_add(x, y, err) (x + y)
51+
#define __checkint_int64_mul(x, y, err) __check_int64_mul(x, y, err)
52+
#define __checkint_int32_mul(x, y, err) __check_int32_mul(x, y, err)
53+
#define __checkint_uint64_add(x, y, err) __check_uint64_add(x, y, err)
54+
#define __checkint_uint32_add(x, y, err) __check_uint32_add(x, y, err)
5355

5456
#endif
5557

CoreFoundation/Base.subproj/CFUtilities.c

-1
Original file line numberDiff line numberDiff line change
@@ -894,7 +894,6 @@ void CFLog1(CFLogLevel lev, CFStringRef message) {
894894
if (maxLength > sizeof(stack_buffer) / sizeof(stack_buffer[0])) {
895895
buffer = calloc(sizeof(char), maxLength);
896896
if (!buffer) {
897-
- __android_log_print(ANDROID_LOG_ERROR, tag, "Unable to allocate %d bytes for log message - truncating.", (int)axLength);
898897
maxLength = sizeof(stack_buffer) / sizeof(stack_buffer[0]);
899898
buffer = &stack_buffer[0];
900899
buffer[maxLength-1] = '\000';

CoreFoundation/NumberDate.subproj/CFTimeZone.c

+2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@
2727
#if DEPLOYMENT_TARGET_MACOSX || DEPLOYMENT_TARGET_EMBEDDED || DEPLOYMENT_TARGET_LINUX || DEPLOYMENT_TARGET_FREEBSD
2828
#include <dirent.h>
2929
#include <unistd.h>
30+
#if !TARGET_OS_ANDROID
3031
#include <sys/fcntl.h>
3132
#endif
33+
#endif
3234
#if DEPLOYMENT_TARGET_MACOSX || DEPLOYMENT_TARGET_EMBEDDED
3335
#include <tzfile.h>
3436
#elif DEPLOYMENT_TARGET_LINUX || DEPLOYMENT_TARGET_FREEBSD

CoreFoundation/PlugIn.subproj/CFBundle_InfoPlist.c

+2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
#if TARGET_OS_CYGWIN
2020
#else
2121
#include <dirent.h>
22+
#if !TARGET_OS_ANDROID
2223
#include <sys/sysctl.h>
24+
#endif
2325
#include <sys/mman.h>
2426
#endif
2527
#endif

CoreFoundation/PlugIn.subproj/CFBundle_Resources.c

+2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@
2727

2828
#if DEPLOYMENT_TARGET_MACOSX || DEPLOYMENT_TARGET_EMBEDDED || DEPLOYMENT_TARGET_EMBEDDED_MINI || DEPLOYMENT_TARGET_LINUX
2929
#include <unistd.h>
30+
#if !TARGET_OS_ANDROID
3031
#include <sys/sysctl.h>
32+
#endif
3133
#include <sys/stat.h>
3234
#include <dirent.h>
3335
#endif

Foundation/NSHost.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ open class Host: NSObject {
7474
}
7575
var hints = addrinfo()
7676
hints.ai_family = PF_UNSPEC
77-
#if os(OSX) || os(iOS)
77+
#if os(OSX) || os(iOS) || os(Android)
7878
hints.ai_socktype = SOCK_STREAM
7979
#else
8080
hints.ai_socktype = Int32(SOCK_STREAM.rawValue)

Foundation/NSPlatform.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import Glibc
1515

1616
#if os(OSX) || os(iOS)
1717
fileprivate let _NSPageSize = Int(vm_page_size)
18-
#elseif os(Linux)
18+
#elseif os(Linux) || os(Android)
1919
fileprivate let _NSPageSize = Int(getpagesize())
2020
#endif
2121

0 commit comments

Comments
 (0)