Thomas Gruber

Results 294 comments of Thomas Gruber

That's unfortunate. I tried to make it as convenient as possible for you. You need the PID of the `access-daemon` executable, so after `make start_daemon`, try a `pidof access-daemon` to...

In the first case, the daemon was already running and you tried it again. The daemon creates a socket file (/tmp/likwid-123456) and this file already exists. Wait until it vanishes...

This output looks right. But there is no error, no segfault or anything, that's unexpected. I'll send you a new test daemon...

It seems you found the problem before I was able to answer. Just for anybody searching for anything similar: you have switch the `COMPILER` setting in `config.mk`to `GCCARMv8` and do...

You don't need to modify anything in the Makefile. The only setting is in `config.mk`: `COMPILER=GCC` to `COMPILER=GCCARMv8` Your change includes files with x86 assembly which are not compilable on...

Did changing only the `COMPILER` setting do the trick? If yes, can we close this issue? If no, please post the output of `Q= make`.

There is an `#ifdef` around it to compile only for x86_64 but it does not seem to work (using __ARM_ARCH_7A__). Could you post the output of `gcc -dM -E -...

As you see, your compiler says it runs on an ARM 6. Not sure whether it's the OS installation or some other setting (compiler flag?) but that won't work. You...

So, have you checked that it's not just a compiler flag? `-march`? The file list is too long to list it here. It's not only the `#if !defined(__ARM_ARCH_7A__) && !defined(__ARM_ARCH_8A)...

Hi, I have access to an ARMv7 platform (also some Jetson board) but only through complicated ways, so it's not as tested as ARMv8. It worked but that's quite some...