Maksym Grebenets

Results 26 comments of Maksym Grebenets

@milend Did you mean to say ``` #import // LibA is the module which you imported via `import` in Swift #import ``` ? I.e. the idea is to import private...

Hi. I am trying to look into that and trying to build and test the same way you do. I know for sure the build is ok up until 1.54.0....

Also, have a look at your C++ dialect settings. As I understand you don't use `--with-c++11` flag when building, right? Then make sure that your Xcode project build settings match....

When I add `locale` to list of libs I have the same issue with `iconv`. Apparently for `locale` either `iconv` or `icu` is required. Both are not part of boost...

I couldn't get iconv located either. I know for sure that there is iconv library in iOS, here's how you can find it's path ``` ICONV_IOS_PATH=$(dirname $(find $(xcrun --sdk iphoneos...

I couldn't get anything working. But I found some really great example of building Boost. Have a look at this one: https://github.com/PaulWagener/mapnik-ios-framework/blob/master/Makefile#L120-L137 It doesn't build `locale`, but it builds `regex`...

I don't quite know where to look for, but maybe simple checklist would help. Since it can't find "iphone-7.0" maybe you don't have all the tools and SDK installed. After...

Hi, I have identical output for all these commands ``` grebenetsm@NDMML1005567:boost-xcode5-iosx$ xcrun --sdk iphoneos --show-sdk-path /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk grebenetsm@NDMML1005567:boost-xcode5-iosx$ xcrun --sdk iphoneos --show-sdk-platform-path /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform grebenetsm@NDMML1005567:boost-xcode5-iosx$ find /Applications/Xcode.app/ -name "iPhoneOS7*" /Applications/Xcode.app//Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk grebenetsm@NDMML1005567:boost-xcode5-iosx$ find...

Привет. Sorry for late response. Can't really tell what could be the reason. From my experience, the build normally is OK on "clean" systems. By "clean" I mean OS X...

I havent's tested 1.55.0 with boost.sh, so you might have problems. I would recommend to check the makefile branch (https://github.com/mgrebenets/boost-xcode5-iosx/tree/makefile). That should work with `thread`. I plan to change build...