This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

工程video_copy的CONFIGURO到底是什么?



工程video_copy的arm程序makefile有这一句:

# [CE] The path to the configuro utility

CONFIGURO = XDCPATH="$(XDC_PATH)" $(XDC_INSTALL_DIR)/xs xdc.tools.configuro

请问此句之后CONFIGURO 的值到底是什么? CONFIGURO 之后包含三项内容,对吗?

  • The common configuro command line options available include:

    -b

    Specifies the name of the config.bld file.

    -c

    Specifies root directory of the code generation tools or compiler.

    --cb

    Use a config.bld found along the package path

    --cfgArgs

    Optional arguments passed to configuration script

    -D

    Set Java properties in the configuration environment

    --linkTemplate

    Linker command file template

    -o

    Specifies the name of the output directory.

    -p

    Specifies the platform to use.

    -r

    Specifies the build profile to use.

    --rtsName

    Specify RTSC runtime package name

    -t

    Specifies the target to use.

    -v

    Show details during build.

    -w

    Treat incompatibilities only as warnings.

    -x

    Exclude specified packages from compatibility checking.

    rtsc.eclipse.org/.../Command_-_xdc.tools.configuro

  • 等号右边有三项: 第二项定义了一个可以执行的文件,这是就是shell文件xs,第三项是xs的命令行选项,第一项定义了xs执行期间的一个环境变量XDCPATH。算法服务器makefile中会有一项:

     Target : prerequistes

              CONFIGURO

    make程序解析makefile到这一项时,会先设置出环境变量XDCPATH,然后再调用脚本XS

  • Thank you for your answer.