From 236b007c931ea0a7aa2134f3bdea8b7d98a3d69c Mon Sep 17 00:00:00 2001
From: William S Fulton
+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 ++