Skip to content

Commit

Permalink
ref(recipes): Add a - to the exports using the toolchain name
Browse files Browse the repository at this point in the history
Signed-off-by: Miguel Silva <miguelafsilva5@gmail.com>
  • Loading branch information
miguelafsilva5 committed Feb 22, 2024
1 parent 1637032 commit ccaf59a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pkgs/bao/bao.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ stdenv.mkDerivation rec {

buildPhase = ''
export ARCH=${plat_arch}
export CROSS_COMPILE=${plat_toolchain}
export CROSS_COMPILE=${plat_toolchain}-
export DEMO=baremetal
mkdir -p ./config
cp -L ${demos}/demos/$DEMO/configs/${platform}.c \
Expand Down
2 changes: 1 addition & 1 deletion pkgs/bao/bao_tf.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ stdenv.mkDerivation rec {

buildPhase = ''
export ARCH=${plat_arch}
export CROSS_COMPILE=${plat_toolchain}
export CROSS_COMPILE=${plat_toolchain}-
export DEMO=baremetal
mkdir -p ./config
cp -L ${demos}/demos/$DEMO/configs/${platform}.c \
Expand Down
2 changes: 1 addition & 1 deletion pkgs/guest/baremetal-local-tf.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ stdenv.mkDerivation rec {

buildPhase = ''
export ARCH=${plat_arch}
export CROSS_COMPILE=${plat_toolchain}
export CROSS_COMPILE=${plat_toolchain}-
export TESTF_TESTS_DIR=$out/tests/src
export TESTF_REPO_DIR=$out/tests/bao-tests
chmod -R u+w $out/tests/bao-tests
Expand Down
2 changes: 1 addition & 1 deletion pkgs/guest/baremetal-local.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ stdenv.mkDerivation rec {

buildPhase = ''
export ARCH=${plat_arch}
export CROSS_COMPILE=${plat_toolchain}
export CROSS_COMPILE=${plat_toolchain}-
make -C $out PLATFORM=${platform}
'';

Expand Down
2 changes: 1 addition & 1 deletion pkgs/guest/baremetal-remote-tf.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ stdenv.mkDerivation rec {

buildPhase = ''
export ARCH=${plat_arch}
export CROSS_COMPILE=${plat_toolchain}
export CROSS_COMPILE=${plat_toolchain}-
export TESTF_TESTS_DIR=$out/tests/src
export TESTF_REPO_DIR=$out/tests/bao-tests
chmod -R u+w $out/tests/bao-tests
Expand Down
2 changes: 1 addition & 1 deletion pkgs/guest/baremetal-remote.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ stdenv.mkDerivation rec {

buildPhase = ''
export ARCH=${plat_arch}
export CROSS_COMPILE=${plat_toolchain}
export CROSS_COMPILE=${plat_toolchain}-
make PLATFORM=${platform}
'';

Expand Down

0 comments on commit ccaf59a

Please sign in to comment.