Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions lisa/_assets/binaries/arm64/README.json-c
Original file line number Diff line number Diff line change
@@ -1,33 +1,34 @@
Sources of json-c available at:
Git commit: 9021cdcdd01fc9dbcbe1f06391848c2ac915212f
Git commit: 2f2ddc1f2dbca56c874e8f9c31b5b963202d80e7
Git repository: https://github.com/json-c/json-c


Build host info:

NAME="Alpine Linux"
ID=alpine
VERSION_ID=3.13.4
PRETTY_NAME="Alpine Linux v3.13"
VERSION_ID=3.16.1
PRETTY_NAME="Alpine Linux v3.16"
HOME_URL="https://alpinelinux.org/"
BUG_REPORT_URL="https://bugs.alpinelinux.org/"
BUG_REPORT_URL="https://gitlab.alpinelinux.org/alpine/aports/-/issues"


Build recipe:

export ARCH=arm64
export BUILD_DIR=/tmp/tmp9j6fbooz/arm64/source
export BUILD_DIR=/tmp/tmpwlo34ncm/arm64/source
export LISA_ARCH_ASSETS=/lisa/_assets/binaries/arm64
export LISA_HOME=''
#! /bin/bash

ALPINE_VERSION=v3.13/main
ALPINE_VERSION=v3.16
ALPINE_BUILD_DEPENDENCIES=(autoconf automake bash cmake gcc git make libtool linux-headers musl-dev)

build_jsonc() {
# As recommended in the README, build in a separate tree
mkdir json-c-build
cd json-c-build
# As recommended in the README, build in a separate tree. The folder needs
# to be called "json-c" as rt-app will #include <json-c/json.h>
mkdir json-c
cd json-c
export ac_cv_func_malloc_0_nonnull=yes
export ac_cv_func_realloc_0_nonnull=yes
cmake ../json-c -DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON -DCMAKE_C_COMPILER=${CROSS_COMPILE}gcc
Expand All @@ -46,23 +47,23 @@ build_rtapp() {
export ac_cv_lib_json_c_json_object_from_file=yes
export ac_cv_lib_numa_numa_available=yes
./autogen.sh
./configure --host=$CONFIGURE_HOST LDFLAGS="--static -L$BUILD_DIR/json-c-build/ -L$BUILD_DIR/numactl/" \
CFLAGS="-I$BUILD_DIR -I$BUILD_DIR/numactl -I$BUILD_DIR/json-c-build" --with-deadline
./configure --host=$CONFIGURE_HOST LDFLAGS="--static -L$BUILD_DIR/json-c/ -L$BUILD_DIR/numactl/" \
CFLAGS="-I$BUILD_DIR -I$BUILD_DIR/numactl -I$BUILD_DIR/json-c" --with-deadline
make
"$CROSS_COMPILE"strip src/rt-app
}

download() {
git clone https://github.com/json-c/json-c json-c
# git -C json-c checkout ddd049045d98dd3163d01a7d79184b3c7fb95a14
git -C json-c checkout json-c-0.15-20200726
git -C json-c checkout json-c-0.16-20220414

git clone https://github.com/numactl/numactl.git
git -C numactl checkout 26fba7199c365b55e72e054bb2adba097ce04924
git -C numactl checkout 8b18345065c39d6b1e498bf635b4c8668e2d8f4e

git clone https://github.com/douglas-raillard-arm/rt-app.git
# Branch: lisa
git -C rt-app checkout 5c6e0d8e96487dce8f3fb37e0e9aba995b70998e
git -C rt-app checkout 341f1f944023524c18ac6d254d83315434554ee4
}

build() {
Expand Down
29 changes: 15 additions & 14 deletions lisa/_assets/binaries/arm64/README.libnumactl
Original file line number Diff line number Diff line change
@@ -1,33 +1,34 @@
Sources of libnumactl available at:
Git commit: 26fba7199c365b55e72e054bb2adba097ce04924
Git commit: 8b18345065c39d6b1e498bf635b4c8668e2d8f4e
Git repository: https://github.com/numactl/numactl.git


Build host info:

NAME="Alpine Linux"
ID=alpine
VERSION_ID=3.13.4
PRETTY_NAME="Alpine Linux v3.13"
VERSION_ID=3.16.1
PRETTY_NAME="Alpine Linux v3.16"
HOME_URL="https://alpinelinux.org/"
BUG_REPORT_URL="https://bugs.alpinelinux.org/"
BUG_REPORT_URL="https://gitlab.alpinelinux.org/alpine/aports/-/issues"


Build recipe:

export ARCH=arm64
export BUILD_DIR=/tmp/tmp9j6fbooz/arm64/source
export BUILD_DIR=/tmp/tmpwlo34ncm/arm64/source
export LISA_ARCH_ASSETS=/lisa/_assets/binaries/arm64
export LISA_HOME=''
#! /bin/bash

ALPINE_VERSION=v3.13/main
ALPINE_VERSION=v3.16
ALPINE_BUILD_DEPENDENCIES=(autoconf automake bash cmake gcc git make libtool linux-headers musl-dev)

build_jsonc() {
# As recommended in the README, build in a separate tree
mkdir json-c-build
cd json-c-build
# As recommended in the README, build in a separate tree. The folder needs
# to be called "json-c" as rt-app will #include <json-c/json.h>
mkdir json-c
cd json-c
export ac_cv_func_malloc_0_nonnull=yes
export ac_cv_func_realloc_0_nonnull=yes
cmake ../json-c -DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON -DCMAKE_C_COMPILER=${CROSS_COMPILE}gcc
Expand All @@ -46,23 +47,23 @@ build_rtapp() {
export ac_cv_lib_json_c_json_object_from_file=yes
export ac_cv_lib_numa_numa_available=yes
./autogen.sh
./configure --host=$CONFIGURE_HOST LDFLAGS="--static -L$BUILD_DIR/json-c-build/ -L$BUILD_DIR/numactl/" \
CFLAGS="-I$BUILD_DIR -I$BUILD_DIR/numactl -I$BUILD_DIR/json-c-build" --with-deadline
./configure --host=$CONFIGURE_HOST LDFLAGS="--static -L$BUILD_DIR/json-c/ -L$BUILD_DIR/numactl/" \
CFLAGS="-I$BUILD_DIR -I$BUILD_DIR/numactl -I$BUILD_DIR/json-c" --with-deadline
make
"$CROSS_COMPILE"strip src/rt-app
}

download() {
git clone https://github.com/json-c/json-c json-c
# git -C json-c checkout ddd049045d98dd3163d01a7d79184b3c7fb95a14
git -C json-c checkout json-c-0.15-20200726
git -C json-c checkout json-c-0.16-20220414

git clone https://github.com/numactl/numactl.git
git -C numactl checkout 26fba7199c365b55e72e054bb2adba097ce04924
git -C numactl checkout 8b18345065c39d6b1e498bf635b4c8668e2d8f4e

git clone https://github.com/douglas-raillard-arm/rt-app.git
# Branch: lisa
git -C rt-app checkout 5c6e0d8e96487dce8f3fb37e0e9aba995b70998e
git -C rt-app checkout 341f1f944023524c18ac6d254d83315434554ee4
}

build() {
Expand Down
29 changes: 15 additions & 14 deletions lisa/_assets/binaries/arm64/README.rt-app
Original file line number Diff line number Diff line change
@@ -1,33 +1,34 @@
Sources of rt-app available at:
Git commit: 5c6e0d8e96487dce8f3fb37e0e9aba995b70998e
Git commit: 341f1f944023524c18ac6d254d83315434554ee4
Git repository: https://github.com/douglas-raillard-arm/rt-app.git


Build host info:

NAME="Alpine Linux"
ID=alpine
VERSION_ID=3.13.4
PRETTY_NAME="Alpine Linux v3.13"
VERSION_ID=3.16.1
PRETTY_NAME="Alpine Linux v3.16"
HOME_URL="https://alpinelinux.org/"
BUG_REPORT_URL="https://bugs.alpinelinux.org/"
BUG_REPORT_URL="https://gitlab.alpinelinux.org/alpine/aports/-/issues"


Build recipe:

export ARCH=arm64
export BUILD_DIR=/tmp/tmp9j6fbooz/arm64/source
export BUILD_DIR=/tmp/tmpwlo34ncm/arm64/source
export LISA_ARCH_ASSETS=/lisa/_assets/binaries/arm64
export LISA_HOME=''
#! /bin/bash

ALPINE_VERSION=v3.13/main
ALPINE_VERSION=v3.16
ALPINE_BUILD_DEPENDENCIES=(autoconf automake bash cmake gcc git make libtool linux-headers musl-dev)

build_jsonc() {
# As recommended in the README, build in a separate tree
mkdir json-c-build
cd json-c-build
# As recommended in the README, build in a separate tree. The folder needs
# to be called "json-c" as rt-app will #include <json-c/json.h>
mkdir json-c
cd json-c
export ac_cv_func_malloc_0_nonnull=yes
export ac_cv_func_realloc_0_nonnull=yes
cmake ../json-c -DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON -DCMAKE_C_COMPILER=${CROSS_COMPILE}gcc
Expand All @@ -46,23 +47,23 @@ build_rtapp() {
export ac_cv_lib_json_c_json_object_from_file=yes
export ac_cv_lib_numa_numa_available=yes
./autogen.sh
./configure --host=$CONFIGURE_HOST LDFLAGS="--static -L$BUILD_DIR/json-c-build/ -L$BUILD_DIR/numactl/" \
CFLAGS="-I$BUILD_DIR -I$BUILD_DIR/numactl -I$BUILD_DIR/json-c-build" --with-deadline
./configure --host=$CONFIGURE_HOST LDFLAGS="--static -L$BUILD_DIR/json-c/ -L$BUILD_DIR/numactl/" \
CFLAGS="-I$BUILD_DIR -I$BUILD_DIR/numactl -I$BUILD_DIR/json-c" --with-deadline
make
"$CROSS_COMPILE"strip src/rt-app
}

download() {
git clone https://github.com/json-c/json-c json-c
# git -C json-c checkout ddd049045d98dd3163d01a7d79184b3c7fb95a14
git -C json-c checkout json-c-0.15-20200726
git -C json-c checkout json-c-0.16-20220414

git clone https://github.com/numactl/numactl.git
git -C numactl checkout 26fba7199c365b55e72e054bb2adba097ce04924
git -C numactl checkout 8b18345065c39d6b1e498bf635b4c8668e2d8f4e

git clone https://github.com/douglas-raillard-arm/rt-app.git
# Branch: lisa
git -C rt-app checkout 5c6e0d8e96487dce8f3fb37e0e9aba995b70998e
git -C rt-app checkout 341f1f944023524c18ac6d254d83315434554ee4
}

build() {
Expand Down
Binary file modified lisa/_assets/binaries/arm64/rt-app
Binary file not shown.
29 changes: 15 additions & 14 deletions lisa/_assets/binaries/armeabi/README.json-c
Original file line number Diff line number Diff line change
@@ -1,33 +1,34 @@
Sources of json-c available at:
Git commit: 9021cdcdd01fc9dbcbe1f06391848c2ac915212f
Git commit: 2f2ddc1f2dbca56c874e8f9c31b5b963202d80e7
Git repository: https://github.com/json-c/json-c


Build host info:

NAME="Alpine Linux"
ID=alpine
VERSION_ID=3.13.4
PRETTY_NAME="Alpine Linux v3.13"
VERSION_ID=3.16.1
PRETTY_NAME="Alpine Linux v3.16"
HOME_URL="https://alpinelinux.org/"
BUG_REPORT_URL="https://bugs.alpinelinux.org/"
BUG_REPORT_URL="https://gitlab.alpinelinux.org/alpine/aports/-/issues"


Build recipe:

export ARCH=armeabi
export BUILD_DIR=/tmp/tmp9j6fbooz/armeabi/source
export BUILD_DIR=/tmp/tmpwlo34ncm/armeabi/source
export LISA_ARCH_ASSETS=/lisa/_assets/binaries/armeabi
export LISA_HOME=''
#! /bin/bash

ALPINE_VERSION=v3.13/main
ALPINE_VERSION=v3.16
ALPINE_BUILD_DEPENDENCIES=(autoconf automake bash cmake gcc git make libtool linux-headers musl-dev)

build_jsonc() {
# As recommended in the README, build in a separate tree
mkdir json-c-build
cd json-c-build
# As recommended in the README, build in a separate tree. The folder needs
# to be called "json-c" as rt-app will #include <json-c/json.h>
mkdir json-c
cd json-c
export ac_cv_func_malloc_0_nonnull=yes
export ac_cv_func_realloc_0_nonnull=yes
cmake ../json-c -DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON -DCMAKE_C_COMPILER=${CROSS_COMPILE}gcc
Expand All @@ -46,23 +47,23 @@ build_rtapp() {
export ac_cv_lib_json_c_json_object_from_file=yes
export ac_cv_lib_numa_numa_available=yes
./autogen.sh
./configure --host=$CONFIGURE_HOST LDFLAGS="--static -L$BUILD_DIR/json-c-build/ -L$BUILD_DIR/numactl/" \
CFLAGS="-I$BUILD_DIR -I$BUILD_DIR/numactl -I$BUILD_DIR/json-c-build" --with-deadline
./configure --host=$CONFIGURE_HOST LDFLAGS="--static -L$BUILD_DIR/json-c/ -L$BUILD_DIR/numactl/" \
CFLAGS="-I$BUILD_DIR -I$BUILD_DIR/numactl -I$BUILD_DIR/json-c" --with-deadline
make
"$CROSS_COMPILE"strip src/rt-app
}

download() {
git clone https://github.com/json-c/json-c json-c
# git -C json-c checkout ddd049045d98dd3163d01a7d79184b3c7fb95a14
git -C json-c checkout json-c-0.15-20200726
git -C json-c checkout json-c-0.16-20220414

git clone https://github.com/numactl/numactl.git
git -C numactl checkout 26fba7199c365b55e72e054bb2adba097ce04924
git -C numactl checkout 8b18345065c39d6b1e498bf635b4c8668e2d8f4e

git clone https://github.com/douglas-raillard-arm/rt-app.git
# Branch: lisa
git -C rt-app checkout 5c6e0d8e96487dce8f3fb37e0e9aba995b70998e
git -C rt-app checkout 341f1f944023524c18ac6d254d83315434554ee4
}

build() {
Expand Down
29 changes: 15 additions & 14 deletions lisa/_assets/binaries/armeabi/README.libnumactl
Original file line number Diff line number Diff line change
@@ -1,33 +1,34 @@
Sources of libnumactl available at:
Git commit: 26fba7199c365b55e72e054bb2adba097ce04924
Git commit: 8b18345065c39d6b1e498bf635b4c8668e2d8f4e
Git repository: https://github.com/numactl/numactl.git


Build host info:

NAME="Alpine Linux"
ID=alpine
VERSION_ID=3.13.4
PRETTY_NAME="Alpine Linux v3.13"
VERSION_ID=3.16.1
PRETTY_NAME="Alpine Linux v3.16"
HOME_URL="https://alpinelinux.org/"
BUG_REPORT_URL="https://bugs.alpinelinux.org/"
BUG_REPORT_URL="https://gitlab.alpinelinux.org/alpine/aports/-/issues"


Build recipe:

export ARCH=armeabi
export BUILD_DIR=/tmp/tmp9j6fbooz/armeabi/source
export BUILD_DIR=/tmp/tmpwlo34ncm/armeabi/source
export LISA_ARCH_ASSETS=/lisa/_assets/binaries/armeabi
export LISA_HOME=''
#! /bin/bash

ALPINE_VERSION=v3.13/main
ALPINE_VERSION=v3.16
ALPINE_BUILD_DEPENDENCIES=(autoconf automake bash cmake gcc git make libtool linux-headers musl-dev)

build_jsonc() {
# As recommended in the README, build in a separate tree
mkdir json-c-build
cd json-c-build
# As recommended in the README, build in a separate tree. The folder needs
# to be called "json-c" as rt-app will #include <json-c/json.h>
mkdir json-c
cd json-c
export ac_cv_func_malloc_0_nonnull=yes
export ac_cv_func_realloc_0_nonnull=yes
cmake ../json-c -DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON -DCMAKE_C_COMPILER=${CROSS_COMPILE}gcc
Expand All @@ -46,23 +47,23 @@ build_rtapp() {
export ac_cv_lib_json_c_json_object_from_file=yes
export ac_cv_lib_numa_numa_available=yes
./autogen.sh
./configure --host=$CONFIGURE_HOST LDFLAGS="--static -L$BUILD_DIR/json-c-build/ -L$BUILD_DIR/numactl/" \
CFLAGS="-I$BUILD_DIR -I$BUILD_DIR/numactl -I$BUILD_DIR/json-c-build" --with-deadline
./configure --host=$CONFIGURE_HOST LDFLAGS="--static -L$BUILD_DIR/json-c/ -L$BUILD_DIR/numactl/" \
CFLAGS="-I$BUILD_DIR -I$BUILD_DIR/numactl -I$BUILD_DIR/json-c" --with-deadline
make
"$CROSS_COMPILE"strip src/rt-app
}

download() {
git clone https://github.com/json-c/json-c json-c
# git -C json-c checkout ddd049045d98dd3163d01a7d79184b3c7fb95a14
git -C json-c checkout json-c-0.15-20200726
git -C json-c checkout json-c-0.16-20220414

git clone https://github.com/numactl/numactl.git
git -C numactl checkout 26fba7199c365b55e72e054bb2adba097ce04924
git -C numactl checkout 8b18345065c39d6b1e498bf635b4c8668e2d8f4e

git clone https://github.com/douglas-raillard-arm/rt-app.git
# Branch: lisa
git -C rt-app checkout 5c6e0d8e96487dce8f3fb37e0e9aba995b70998e
git -C rt-app checkout 341f1f944023524c18ac6d254d83315434554ee4
}

build() {
Expand Down
Loading