How to determine C code is compiled for Android/NDK or iOS

后端 未结 2 1383
鱼传尺愫
鱼传尺愫 2021-02-20 13:22

I am reusing a legacy C library in an iOS app and in an Android app. I want to customize some macro definitions (e.g. for logging). Are there standard defines to check for (usin

2条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-20 14:17

    __ANDROID__ or ANDROID for Android (compilation with the NDK) and __APPLE__ on Apple platforms (iOS or OSX)

提交回复
热议问题