abi-monitor
abi-monitor copied to clipboard
abi-monitor tool issue
Hi all,
- i am using abi-monitor tool bellow command is download particular kernel abi-monitor -get -v 5.15.38 linux.json
- 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,

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.