* [PATCH 1/3] stream: Add Stream benchmark
@ 2015-03-04 20:05 Franklin S. Cooper Jr
2015-03-04 20:05 ` [PATCH 2/3] stream: Add append for TISDK customizations Franklin S. Cooper Jr
2015-03-04 20:05 ` [PATCH 3/3] packagegroup-arago-tisdk-addons: Add stream benchmark Franklin S. Cooper Jr
0 siblings, 2 replies; 5+ messages in thread
From: Franklin S. Cooper Jr @ 2015-03-04 20:05 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
From: "Franklin S. Cooper Jr" <fcooper@ti.com>
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../recipes-benchmark/stream/stream_git.bb | 23 ++++++++++++++++++++
1 file changed, 23 insertions(+)
create mode 100644 meta-arago-extras/recipes-benchmark/stream/stream_git.bb
diff --git a/meta-arago-extras/recipes-benchmark/stream/stream_git.bb b/meta-arago-extras/recipes-benchmark/stream/stream_git.bb
new file mode 100644
index 0000000..56be33f
--- /dev/null
+++ b/meta-arago-extras/recipes-benchmark/stream/stream_git.bb
@@ -0,0 +1,23 @@
+DESCRIPTION = "Stream Benchmark"
+HOMEPAGE = "http://www.cs.virginia.edu/stream/"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=bca8cbe07976fe64c8946378d08314b0"
+SECTION = "system"
+
+PR = "r0"
+
+BRANCH ?= "master"
+SRCREV = "bd474633b7b0352211b48d84065bf7b7e166e4c2"
+
+SRC_URI = "git://git.ti.com/sitara-linux/stream.git;branch=${BRANCH}"
+
+S = "${WORKDIR}/git"
+do_compile() {
+ # build the release version
+ oe_runmake stream_linux
+}
+do_install() {
+ install -d ${D}/${bindir}
+ install -m 0755 ${S}/stream_c ${D}/${bindir}/
+}
+
--
1.7.9.5
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/3] stream: Add append for TISDK customizations
2015-03-04 20:05 [PATCH 1/3] stream: Add Stream benchmark Franklin S. Cooper Jr
@ 2015-03-04 20:05 ` Franklin S. Cooper Jr
2015-03-04 20:20 ` Denys Dmytriyenko
2015-03-04 20:05 ` [PATCH 3/3] packagegroup-arago-tisdk-addons: Add stream benchmark Franklin S. Cooper Jr
1 sibling, 1 reply; 5+ messages in thread
From: Franklin S. Cooper Jr @ 2015-03-04 20:05 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
From: "Franklin S. Cooper Jr" <fcooper@ti.com>
* Use an SDK branch that slightly tweaks the makefile to include generic
optimizations that should be used by all TI platforms.
* Also manually set certain variables to insure no additional/unexpected
compiler optimization are pulled in.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../recipes-benchmark/stream/stream_git.bbappend | 10 ++++++++++
1 file changed, 10 insertions(+)
create mode 100644 meta-arago-distro/recipes-benchmark/stream/stream_git.bbappend
diff --git a/meta-arago-distro/recipes-benchmark/stream/stream_git.bbappend b/meta-arago-distro/recipes-benchmark/stream/stream_git.bbappend
new file mode 100644
index 0000000..83adfb6
--- /dev/null
+++ b/meta-arago-distro/recipes-benchmark/stream/stream_git.bbappend
@@ -0,0 +1,10 @@
+PR_append = "-arago0"
+
+BRANCH = "sdk"
+SRCREV = "cfd73a33c0ceef1f8532ce6a71de3bcf9435f6a2"
+
+do_compile_prepend() {
+ #Explicitly set some variables to insure no unexpected optimizations are being passed in.
+ export CFLAGS="-isystem${EXTERNAL_TOOLCHAIN}/${ELT_TARGET_SYS}/include"
+ export LDFLAGS="-L${EXTERNAL_TOOLCHAIN}/${ELT_TARGET_SYS}/lib -Wl,-rpath-link,${EXTERNAL_TOOLCHAIN}/${ELT_TARGET_SYS}/lib"
+}
--
1.7.9.5
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH 2/3] stream: Add append for TISDK customizations
2015-03-04 20:05 ` [PATCH 2/3] stream: Add append for TISDK customizations Franklin S. Cooper Jr
@ 2015-03-04 20:20 ` Denys Dmytriyenko
2015-03-04 20:35 ` Cooper Jr., Franklin
0 siblings, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2015-03-04 20:20 UTC (permalink / raw)
To: Franklin S. Cooper Jr; +Cc: meta-arago
On Wed, Mar 04, 2015 at 02:05:15PM -0600, Franklin S. Cooper Jr wrote:
> From: "Franklin S. Cooper Jr" <fcooper@ti.com>
>
> * Use an SDK branch that slightly tweaks the makefile to include generic
> optimizations that should be used by all TI platforms.
> * Also manually set certain variables to insure no additional/unexpected
> compiler optimization are pulled in.
>
> Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> ---
> .../recipes-benchmark/stream/stream_git.bbappend | 10 ++++++++++
> 1 file changed, 10 insertions(+)
> create mode 100644 meta-arago-distro/recipes-benchmark/stream/stream_git.bbappend
>
> diff --git a/meta-arago-distro/recipes-benchmark/stream/stream_git.bbappend b/meta-arago-distro/recipes-benchmark/stream/stream_git.bbappend
> new file mode 100644
> index 0000000..83adfb6
> --- /dev/null
> +++ b/meta-arago-distro/recipes-benchmark/stream/stream_git.bbappend
> @@ -0,0 +1,10 @@
> +PR_append = "-arago0"
> +
> +BRANCH = "sdk"
> +SRCREV = "cfd73a33c0ceef1f8532ce6a71de3bcf9435f6a2"
> +
> +do_compile_prepend() {
> + #Explicitly set some variables to insure no unexpected optimizations are being passed in.
> + export CFLAGS="-isystem${EXTERNAL_TOOLCHAIN}/${ELT_TARGET_SYS}/include"
> + export LDFLAGS="-L${EXTERNAL_TOOLCHAIN}/${ELT_TARGET_SYS}/lib -Wl,-rpath-link,${EXTERNAL_TOOLCHAIN}/${ELT_TARGET_SYS}/lib"
NAK, this assumes external Linaro toolchain. Can you make it more generic? Why
can't you use the sysroots?
--
Denys
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH 2/3] stream: Add append for TISDK customizations
2015-03-04 20:20 ` Denys Dmytriyenko
@ 2015-03-04 20:35 ` Cooper Jr., Franklin
0 siblings, 0 replies; 5+ messages in thread
From: Cooper Jr., Franklin @ 2015-03-04 20:35 UTC (permalink / raw)
To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org
> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Wednesday, March 04, 2015 2:20 PM
> To: Cooper Jr., Franklin
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 2/3] stream: Add append for TISDK
> customizations
>
> On Wed, Mar 04, 2015 at 02:05:15PM -0600, Franklin S. Cooper Jr wrote:
> > From: "Franklin S. Cooper Jr" <fcooper@ti.com>
> >
> > * Use an SDK branch that slightly tweaks the makefile to include generic
> > optimizations that should be used by all TI platforms.
> > * Also manually set certain variables to insure no additional/unexpected
> > compiler optimization are pulled in.
> >
> > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> > ---
> > .../recipes-benchmark/stream/stream_git.bbappend | 10 ++++++++++
> > 1 file changed, 10 insertions(+)
> > create mode 100644
> > meta-arago-distro/recipes-benchmark/stream/stream_git.bbappend
> >
> > diff --git
> > a/meta-arago-distro/recipes-benchmark/stream/stream_git.bbappend
> > b/meta-arago-distro/recipes-benchmark/stream/stream_git.bbappend
> > new file mode 100644
> > index 0000000..83adfb6
> > --- /dev/null
> > +++ b/meta-arago-distro/recipes-
> benchmark/stream/stream_git.bbappend
> > @@ -0,0 +1,10 @@
> > +PR_append = "-arago0"
> > +
> > +BRANCH = "sdk"
> > +SRCREV = "cfd73a33c0ceef1f8532ce6a71de3bcf9435f6a2"
> > +
> > +do_compile_prepend() {
> > + #Explicitly set some variables to insure no unexpected optimizations are
> being passed in.
> > + export CFLAGS="-
> isystem${EXTERNAL_TOOLCHAIN}/${ELT_TARGET_SYS}/include"
> > + export LDFLAGS="-L${EXTERNAL_TOOLCHAIN}/${ELT_TARGET_SYS}/lib -
> Wl,-rpath-link,${EXTERNAL_TOOLCHAIN}/${ELT_TARGET_SYS}/lib"
>
> NAK, this assumes external Linaro toolchain. Can you make it more generic?
> Why can't you use the sysroots?
[Franklin] Oops didn't notice that. I simply looked at the bitbake env variables and stripped away what I didn't need from CFLAGS and LDFLAGS. I'll send a v2 shortly.
> --
> Denys
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 3/3] packagegroup-arago-tisdk-addons: Add stream benchmark
2015-03-04 20:05 [PATCH 1/3] stream: Add Stream benchmark Franklin S. Cooper Jr
2015-03-04 20:05 ` [PATCH 2/3] stream: Add append for TISDK customizations Franklin S. Cooper Jr
@ 2015-03-04 20:05 ` Franklin S. Cooper Jr
1 sibling, 0 replies; 5+ messages in thread
From: Franklin S. Cooper Jr @ 2015-03-04 20:05 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
From: "Franklin S. Cooper Jr" <fcooper@ti.com>
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../packagegroup-arago-tisdk-addons.bb | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
index c6b07a9..b08b0aa 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "Task to install additional utilities/demos for SDKs"
LICENSE = "MIT"
-PR = "r20"
+PR = "r21"
inherit packagegroup
@@ -19,6 +19,7 @@ UTILS = " \
ptpd \
libdrm-kms \
${@base_contains('TUNE_FEATURES', 'armv7a', 'valgrind', '', d)} \
+ stream \
"
UTILS_UBOOT_FW = "u-boot-fw-utils"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-03-04 20:35 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-04 20:05 [PATCH 1/3] stream: Add Stream benchmark Franklin S. Cooper Jr
2015-03-04 20:05 ` [PATCH 2/3] stream: Add append for TISDK customizations Franklin S. Cooper Jr
2015-03-04 20:20 ` Denys Dmytriyenko
2015-03-04 20:35 ` Cooper Jr., Franklin
2015-03-04 20:05 ` [PATCH 3/3] packagegroup-arago-tisdk-addons: Add stream benchmark Franklin S. Cooper Jr
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.