Mark

Results 57 comments of Mark

> Hmm, that's surprising. Any build errors should be reported as errors. @dnephin seems that's my fault :flushed:. I _thought_ I'd tested with a full version of gotestsum and had...

$ `sudo ./opensnoop` Password: Tracing open()s. Ctrl-C to end. ./opensnoop: line 179: events/syscalls/sys_exit_open/enable: No such file or directory ERROR: enabling open() exit tracepoint. Exiting. [opensnoop:179](https://github.com/brendangregg/perf-tools/blob/master/opensnoop#L179) is ``` sh if !...

It _appears_ `CONFIG_FTRACE_SYSCALLS` wasn't enabled in my kernel (though the waters are a bit muddy - the repo containing the config was reorganized a few times). I'll try to find...

> I would like to develop something like XRay for ISE that allow analysis of old FPGAs It would be nice to see this happen! Gotta find time to help......

Sounds like our bastion servers are a bit different than your jump server. For us there's no changing roles, as that's all determined by the ssh certificate. So that'd need...

If our own qemu build is necessary but people are OK with using a pre-built binary, one solution I've used (that doesn't involve storage in git or use of a...

If qemu is being built for a single well-defined target, you can also speed the build by disabling unneeded things. IIRC [this](https://github.com/purecloudlabs/gprovision/blob/master/build/qemu/Dockerfile#L87) made quite a difference.

If I change the qemu build step to this ```bash set -e git clone -b v5.1.0 https://github.com/qemu/qemu --depth 1 && pushd qemu mkdir build && cd build ../configure --target-list=riscv64-softmmu,x86_64-softmmu --audio-drv-list=...

Both risc-v tests produced the expected text with this stripped-down qemu. Without an x86 payload, I gather that it is to be expected that `make run` in emulation/qemu-q35 produces an...

> The problem with an external static memory is that there are not enough IO's for it. For example, 64Kb of 8 bits memory will require at least 26 IO's,...