diff --git a/Doc/Manual/Android.html b/Doc/Manual/Android.html index eb87ea162..4d1be3944 100644 --- a/Doc/Manual/Android.html +++ b/Doc/Manual/Android.html @@ -17,6 +17,7 @@
+Note that the 'extend' example is demonstrates the directors feature. +Normally C++ exception handling and the STL is not available by default in the version of g++ shipped with Android, but this example turns these features on as described in the next section. +
+ ++Should the C++ Standard Template Library (STL) be required, an Application.mk file needs to be created +in the same directory as the Android.mk directory containing information about the STL to use. +See the NDK documentation in the $NDKROOT/docs folder especially CPLUSPLUS-SUPPORT.html. +Below is an example of the Application.mk file to make the STLport static library available for use: +
+ ++# File: Application.mk +APP_STL := gnustl_static ++