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.
14 lines
343 B
14 lines
343 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.5.2"
|
|
fi
|
|
|
|
QAIC_DIR="$HEXAGON_SDK_ROOT/tools/qaic/Ubuntu18"
|
|
OUT_DIR="../generated"
|
|
|
|
mkdir -p $OUT_DIR
|
|
"$QAIC_DIR"/qaic -mdll -o $OUT_DIR -I. chre_slpi.idl
|