blob: cc22c7f75eb6d04f4b04fdbb6c63aa062f97574c [file] [log] [blame]
Zachary Leaf782c54a2024-09-24 14:33:24 +01001#!/usr/bin/env bash
2#
3# Copyright (c) 2024 Arm Limited. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7pre_tf_build() {
Zachary Leaf7937b862024-10-11 12:33:50 +01008 echo $PATH
9 echo $USER
10 echo $RUSTUP_HOME
11 rustup default stable
12 rustup target add --toolchain stable aarch64-unknown-none
13 make -C "$tf_root/rust"
14 make -C "$tf_root/rust" clippy
Zachary Leaf782c54a2024-09-24 14:33:24 +010015}