https://bugs.kde.org/show_bug.cgi?id=503419
--- Comment #6 from Martin Liška <martin.li...@hey.com> --- If I run the run `make pub/libvex_guest_offsets.h` in the VEC folder, then I got correctly generated header file: ``` $ make pub/libvex_guest_offsets.h rm -f auxprogs/genoffsets.s /usr/bin/mkdir -p auxprogs pub gcc \ -Wbad-function-cast -fstrict-aliasing \ -O2 -g -Wall -Wmissing-prototypes -Wshadow -Wpointer-arith -Wstrict-prototypes -Wmissing-declarations -Wno-unused-result -Wcast-align -Wcast-qual -Wwrite-strings -Wempty-body -Wformat -Wformat-signedness -Wformat-security -Wignored-qualifiers -Wmissing-parameter-type -Wlogical-op -Wenum-conversion -Wimplicit-fallthrough=2 -Wold-style-declaration -finline-functions -fno-stack-protector -fno-strict-aliasing -fno-builtin \ -O -S -o auxprogs/genoffsets.s \ ./auxprogs/genoffsets.c grep xyzzy auxprogs/genoffsets.s | grep "^[# ]*#define" \ | sed "s/# #define/#define/g" \ | sed "s/xyzzy\\$//g" \ | sed "s/xyzzy#//g" \ | sed "s/xyzzy//g" \ > pub/libvex_guest_offsets.h rm -f auxprogs/genoffsets.s $ grep OFFSET_riscv64_pc pub/libvex_guest_offsets.h #define OFFSET_riscv64_pc 272 ``` -- You are receiving this mail because: You are watching all bug changes.