Hi @scottt ,
in
|
__asm__ volatile("int $0x03"); |
there is an AT&T specific assembler instruction used, which will lead to failing GAS for compilers defaulting e.g. to Intel syntax.
The compiler agnostic solution would be simply to switch to "int3".
Best
Adam
Hi @scottt ,
in
debugbreak/debugbreak.h
Line 47 in 5dcbe41
there is an AT&T specific assembler instruction used, which will lead to failing GAS for compilers defaulting e.g. to Intel syntax.
The compiler agnostic solution would be simply to switch to "int3".
Best
Adam