From b2881fcabbc7507bb1d670e5233dd786ae597714 Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Fri, 29 Sep 2017 17:12:12 +0100 Subject: COMPMID-417 Updated build system to not combined objects of the different levels of library Until now we had: core = core_obj arm_compute = core_obj + arm_compute_obj graph = core_obj + arm_compute_obj + graph_obj But if an application link against more than one of these libraries then bad things happen. Added version strings in the runtime library too (As it used to only be in Core objects) Updated doxygen for how to compile the examples Change-Id: I7aad6ecf75cfa8dca59f2ea093e13fb0314a3eb4 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/89743 Reviewed-by: Gian Marco Iodice Tested-by: Kaizen --- src/runtime/Utils.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/runtime/Utils.cpp') diff --git a/src/runtime/Utils.cpp b/src/runtime/Utils.cpp index 1b06117c7b..81de782399 100644 --- a/src/runtime/Utils.cpp +++ b/src/runtime/Utils.cpp @@ -28,6 +28,10 @@ using namespace arm_compute; +static const std::string information = +#include "arm_compute_version.embed" + ; + const std::string &arm_compute::string_from_scheduler_type(Scheduler::Type t) { static std::map scheduler_type_map = -- cgit v1.2.1