解决lede编译中的“xdialog/checklist.o: undefined reference to symbol ‘acs_map’”问题

rt

编译lede时发现

make menuconfig报错,make -j1后发现


解决方法:

修改scripts/config/Makefile

$(CC) -o $@ $^ $(call check_lxdialog,ldflags $(CC))

添加-ltinfo

$(CC) -o $@ $^ $(call check_lxdialog,ldflags $(CC)) -ltinfo

make menuconfig

Leave a Reply

Your email address will not be published. Required fields are marked *