You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
338 B
13 lines
338 B
#!/bin/bash |
|
# This script invokes QAIC to generate the source files associated with the |
|
# FastRPC IDL |
|
|
|
if [ -z "$HEXAGON_SDK_ROOT" ]; then |
|
HEXAGON_SDK_ROOT="$HOME/Qualcomm/Hexagon_SDK/3.0" |
|
fi |
|
|
|
QAIC_DIR="$HEXAGON_SDK_ROOT/tools/qaic/Linux" |
|
OUT_DIR="../generated" |
|
|
|
mkdir -p $OUT_DIR |
|
"$QAIC_DIR"/qaic -mdll -o $OUT_DIR -I. chre_slpi.idl
|
|
|