-1

Scons error while installing and building iotivity on ubuntu 12.04

While trying to install iotivity on docker image ubuntu 12.04 i followed all instruction from iotivity Documentation for linux and when i use to run scons in root directory from iotivity i am getting following error in last and process failed

Following is my image and other information Docker Image: Ubuntu:12.04 iotivity Documentation followed : documentation/linux/getting-started Iotivity version used : iotivity-1.1.0.zip

Log file after running Scons is attached as .txt file

Any help is most welcomed and thanks in advance for that

Docker-iotivity-error-log-file

i can't use more than 1 link so please forgive me for iotivity version and documentation full link.

4

1 回答 1

0

这是由于 tinycbor/Sconscript 中缺少文件 cborparser_dup_string.c。

如果您可以将此文件添加到 extlibs/tinycbor/SConscript 中,它应该可以解决问题。

cbor_src = [
    os.path.join(cborDir,'src/cborparser.c'),
    os.path.join(cborDir,'src/cborencoder.c'),
    os.path.join(cborDir,'src/cborerrorstrings.c'),
    os.path.join(cborDir,'src/cborparser_dup_stirng.c'),
]
于 2016-07-28T09:08:39.087 回答