gavinpugh / vs-android

Integrated development of Android NDK C/C++ software with Microsoft Visual Studio.
Other
119 stars 34 forks source link

Error in NDK min version check #132

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Use NDK r10d
2. VSAndroid 0.963 fails
3. The problem

In Microsoft.Cpp.Android.targets. You have the line

    <!-- NDK min version check -->
    <Error Condition="!exists('$(AndroidNdkDir)\toolchains\arm-linux-androideabi-clang3.3\config.mk')"
           Text="$(NDKWrongVersion)"></Error>

I fixed it to version 3.4 and it worked (since r10d) does not include 3.3 
anymore

    <!-- NDK min version check -->
    <Error Condition="!exists('$(AndroidNdkDir)\toolchains\arm-linux-androideabi-clang3.4\config.mk')"
           Text="$(NDKWrongVersion)"></Error>

Original issue reported on code.google.com by Daniel...@gmail.com on 18 Dec 2014 at 2:20

GoogleCodeExporter commented 9 years ago

Original comment by gavin.dj.pugh on 29 Dec 2014 at 5:53