diff options
Diffstat (limited to 'include/uclibc++.mk')
-rw-r--r-- | include/uclibc++.mk | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/uclibc++.mk b/include/uclibc++.mk new file mode 100644 index 0000000..89298e3 --- /dev/null +++ b/include/uclibc++.mk @@ -0,0 +1,16 @@ +ifndef DUMP + ifdef __package_mk + $(error uclibc++.mk must be included before package.mk) + endif +endif + +PKG_PREPARED_DEPENDS += CONFIG_USE_UCLIBCXX +CXX_DEPENDS = @INSTALL_LIBSTDCPP +USE_UCLIBCXX:uclibcxx +USE_LIBSTDCXX:libstdcpp + +ifneq ($(CONFIG_USE_UCLIBCXX),) + ifneq ($(CONFIG_CCACHE),) + TARGET_CXX_NOCACHE=g++-uc + else + TARGET_CXX=g++-uc + endif +endif |