]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/sa-lld.git/blob - sabuild.sh
Fix SA Build issue due to TISCI macro name change
[keystone-rtos/sa-lld.git] / sabuild.sh
1 #!/bin/bash
2 # ******************************************************************************
3 # * FILE PURPOSE: SA LLD Builder 
4 # ******************************************************************************
5 # * FILE NAME: sabuild.sh
6 # *
7 # * DESCRIPTION: 
8 # *  The batch file cleans and builds the installed SA LLD. 
9 # *  Please make sure that the SA LLD Build Environment is setup correctly before 
10 # *  calling this file. 
11 # *
12 # *****************************************************************************
14 # *****************************************************************************
15 # Procedure to build using XDC. Obsolete
16 # *****************************************************************************
18 export SA_INSTALL_DIR="$SALLD_INSTALL_PATH"
19 export CSL_INSTALL_DIR="$PDK_INSTALL_PATH\packages"
20 export C66X_GEN_INSTALL_DIR=\"$C6X_GEN_INSTALL_PATH\"
22 # *****************************************************************************
23 # Clean all SA LLD libraries
24 # *****************************************************************************
25 gmake -C ti/drv/sa    clean
27 # *****************************************************************************
28 # Build both BE and LE libraries
29 # *****************************************************************************
30 gmake -C ti/drv/sa    all
32 # *****************************************************************************
33 #  DONE
34 # *****************************************************************************