abi-monitor icon indicating copy to clipboard operation
abi-monitor copied to clipboard

abi-monitor tool issue

Open vittalll opened this issue 3 years ago • 1 comments

Hi all,

  1. i am using abi-monitor tool bellow command is download particular kernel abi-monitor -get -v 5.15.38 linux.json
  2. this above command is working fine but after the download i am trying to build that kernel version that's why i am passing bellow command abi-monitor -build -v 5.15.38 linux.json

but its not build properly its showing error in bellow

ERROR : custom build has failed (exit code 256)
ERROR : failed to build

any one please help me, Screenshot from 2022-06-09 14-25-24

vittalll avatar Jun 15 '22 11:06 vittalll

sed -i -e "s/O2/Og/" Makefile mkdir build cd build make -C ".." O=$(pwd) defconfig echo "CONFIG_DEBUG_INFO=y" >> .config echo "CONFIG_DEBUG_INFO_REDUCED=n" >> .config echo "CONFIG_DEBUG_INFO_SPLIT=n" >> .config echo "CONFIG_DEBUG_INFO_DWARF4=n" >> .config echo "CONFIG_GDB_SCRIPTS=n" >> .config make CFLAGS='-Og' -j2

for i in find . -name '*.ko';do mkdir -p $INSTALL_TO/dirname $i && cp -f $i $INSTALL_TO/$i;done cp -f vmlinux $INSTALL_TO

this is my build script building all kernel version.

vittalll avatar Jun 15 '22 12:06 vittalll