Pedro Lamarão
unread,Aug 25, 2010, 10:22:28 AM8/25/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to android-ndk
I find this entry in the ANDROID-MK.TXT document strange.
--
LOCAL_CXXFLAGS
An alias for LOCAL_CPPFLAGS. Note that use of this flag is
obsolete
as it may disappear in future releases of the NDK.
--
I'm used to Makefiles generated by Automake, which I suppose follow
some kind of GNU stadard for Makefiles, where CPPFLAGS mean flags for
the pre-processor, while CXXFLAGS mean flags for the C++ compiler.
I think it would be useful to maintain consistency with this very
traditional build system nomenclature and keep CXXFLAGS for C++
compiler flags.
If a variable specific to the pre-processor is not considered useful,
drop CPPFLAGS instead. Or perhaps keep it, and make it a shared
variable between all compilers which use the C pre-processor.
--
P.