stat() unavailable in ios simulator?

前端 未结 2 447
心在旅途
心在旅途 2021-01-27 10:13

I\'ve compiled and linked ios app that uses lib (libclang) that uses stat() with no errors. But i\'m having runtime error:

2014-07-07 16:55:14.138 LibClan

相关标签:
2条回答
  • 2021-01-27 10:50

    The issue is that you built libclang for OSX and linked it into an iOS executable. You need to build libclang for the correct platform.

    stat certainly is supported on iOS.

    0 讨论(0)
  • 2021-01-27 11:04

    I was said stat is not supported on iOS.

    0 讨论(0)
提交回复
热议问题