Skip to content Skip to sidebar Skip to footer

Android: Error: Use Of Undeclared Identifier 'fseeko'

When I am trying to build a boost library in Android using its source code, I am getting below error release|armeabi-v7a : D:/Android/Sdk/ndk->bundle/toolchains/llvm/prebuilt/

Solution 1:

fseeko64 is not available until android-24. You have to either raise your minSdkVersion or stop using _FILE_OFFSET_BITS=64.

https://android.googlesource.com/platform/ndk/+/master/docs/user/common_problems.md#using-with-early-api-levels

Post a Comment for "Android: Error: Use Of Undeclared Identifier 'fseeko'"