Tho Neyugn

Results 11 comments of Tho Neyugn

In the mean time, you could use this settings: ``` [apple] iphonesimulator10.0_toolchains_override = com.apple.dt.toolchain.Swift_2_3,com.apple.dt.toolchain.XcodeDefault iphoneos10.0_toolchains_override = ... ```

yeah, `apple_test` can handle mixed swift & objective-c (thanks to this PR: https://github.com/facebook/buck/pull/881). For swift-only target, I've just landed https://github.com/facebook/buck/pull/895, that PR should make `apple_test` to work with swift-only target,...

Very nice, I didn't think of this when working on https://github.com/facebook/buck/pull/895. Good to know :rocket:!

I doesn't look like an issue to me, you should not include a header from parent folder like in `objc/Foo.h`, but I might be wrong, @ryu2 probably knows more.

Currently, `swift_library` can export its generated header, but not for an `apple_library` that contains swift files, feel free to open a ticket for it. Your example is actually a special...

@steeve The solution for now is to split your big target into smaller, independent ones.

I created a PR a while ago https://github.com/facebook/buck/pull/917 for this split, but observed a minor improvement. Can you link me to your PR?

@huy-le Framework doesn't work yet for swift as I commented in https://github.com/facebook/buck/issues/1237#issuecomment-286421087. Buck doesn't use xcodebuild, it uses command line tools (https://developer.apple.com/download/more/).

@btc @noahsark769 @Usipov apology for the late reply. We are having a few refactoring to be able to merge things back to master. Beginning of this year we have completed...

Framework doesn't work currently, because exported headers from `apple_library` are not propagated up to the bundle. The support for framework started at https://github.com/facebook/buck/pull/1032, and we are currently not actively working...