Topic: Does iOS Support includes tvOS and watchOS?

Does the iOS Support (https://github.com/wolfSSL/wolfssl/tree/master/IDE/iOS) includes tvOS and watchOS?

Share

Re: Does iOS Support includes tvOS and watchOS?

Hi rodrigoareis,

We have not specifically tested on watchOS.
We do have tvOS as a target in <wolfssl-root>/IDE/iOS/wolfssl.xcodeproj/project.pbxproj

Our recommendation for watchOS would be "just try it" and let us know if you experience any issues. We would be happy to make recommendations if something comes up.


Warm Regards,

Kaleb

Re: Does iOS Support includes tvOS and watchOS?

Update:

We have run the following test from the wolfssl-3.15.5/IDE/XCODE directory to show watchOS successfully builds:

#!/bin/sh

WORKSPACE=$(eval "pwd")
PROJ=wolfssl.xcodeproj
CONFIG=Release
SCHEME=wolfssl_ios
ARCH=i386
SDK=watchsimulator5.1
CONF_BUILD_DIR=${WORKSPACE}/simulator

xcodebuild clean build -project ${PROJ} -configuration ${CONFIG} \
           -scheme ${SCHEME} -arch ${ARCH} -sdk ${SDK} \
           BITCODE_GENERATION_MODE=bitcode \
           OTHER_CFLAGS="-fembed-bitcode -O3 -fomit-frame-pointer" \
           CONFIGURATION_BUILD_DIR=${CONF_BUILD_DIR}  \
           -quiet

- K