Dear all,
I am trying to build dce-ns3-1.12 and dce-quagga-dev with ns-3.38 on ubuntu 20.04.
git clone
https://gitlab.com/tomhenderson/bake.gitcd bake
git checkout -b dce-1.12 origin/dce-1.12
export PATH=$PATH:`pwd`/build/bin
export DCE_PATH=`pwd`/build/bin_dce:`pwd`/build/sbin
export LD_LIBRARY_PATH=`pwd`/build/lib
export PYTHONPATH=`pwd`/build/lib
./bake.py configure -e dce-ns3-1.12 -e dce-quagga-dev
./bake.py download
./bake.py build
But there are some errors:
I retry with ‘./bake.py build -v’,find the console output:
>> Building ccnx - Problem
> Subprocess failed with error 2: ['make', 'MORE_LDLIBS=-pie', 'COPT+=-rdynamic']
> Problem: Optional dependency, module "ccnx" failed
This may reduce the functionality of the final build.
However, bake will continue since "ccnx" is not an essential dependency.
For more information call bake with -v or -vvv, for full verbose mode.
>> Building elf-loader - Problem
> Subprocess failed with error 2: ['make', 'vdl-config.h']
> Problem: Optional dependency, module "elf-loader" failed
This may reduce the functionality of the final build.
However, bake will continue since "elf-loader" is not an essential dependency.
For more information call bake with -v or -vvv, for full verbose mode.
>> Building dce-ns3-1.12 - Problem
> Subprocess failed with error 1: ['/usr/bin/python3', '/home/lyz/bake/source/ns-3-dce/waf']
> Error: Critical dependency, module "dce-ns3-1.12" failed
For more information call Bake with --debug and/or -v, -vvv, for full verbose mode (bake --help)
How can I solve these errors?
Thanks a lot!