* put TARGET_FPU="" in conf/machine/include/tune-<foo>.conf to build a hardfloat toolchain
* mixing soft and hardfloat code is safe, BUT hardfloat binaries still don't run onf FPU-less systems
CXXFLAGS += "-fvisibility-inlines-hidden"
#ARM EABI is softfloat by default, but let's make sure :)
-TARGET_FPU_arm = "soft"
+#make it overridable for platforms with FPU, like ep93xx or i.mx31
+TARGET_FPU_arm ?= "soft"
#Name the generated images in a sane way
IMAGE_NAME = "${DISTRO_NAME}-${IMAGE_BASENAME}-${DISTRO_VERSION}-${MACHINE}"