aboutsummaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2019-10-07 13:00:44 +0100
committerMichalis Spyrou <michalis.spyrou@arm.com>2019-12-20 14:04:51 +0000
commit748a7c81245ae81d04607b3a762cf65cd39026f2 (patch)
tree21ac8ad379989fde4aa73e6cf5814c6182f2c3d8 /support
parent37cbc5781ac0aa5106941d0386070d6dc9958a2a (diff)
downloadComputeLibrary-748a7c81245ae81d04607b3a762cf65cd39026f2.tar.gz
COMPMID-2706: Add the ability to build bootcode for bare metal
Adds an option for providing a linker script and also adds the bootcode folder, it it exists, in the build path and links it with the executable binaries. Change-Id: I4119b21bdf1b4dd7fe38c4ee66741460666f53a1 Signed-off-by: Michalis Spyrou <michalis.spyrou@arm.com> Reviewed-on: https://review.mlplatform.org/c/2051 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'support')
-rw-r--r--support/ToolchainSupport.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/ToolchainSupport.h b/support/ToolchainSupport.h
index deaded34f3..f90d65c9d9 100644
--- a/support/ToolchainSupport.h
+++ b/support/ToolchainSupport.h
@@ -155,7 +155,7 @@ inline std::string to_string(T && value)
template <typename T>
inline T nearbyint(T value)
{
- return ::nearbyint(value);
+ return static_cast<T>(::nearbyint(value));
}
/** Convert string values to float.
@@ -286,7 +286,7 @@ inline std::string to_string(T &&value)
template <typename T>
inline T nearbyint(T value)
{
- return std::nearbyint(value);
+ return static_cast<T>(std::nearbyint(value));
}
/** Convert string values to float.