main: push {r7, lr} adr r0, .myString bl printf mov r0, #0 pop {r7, pc}.myString: .asciz "Hello\n"
OkThank you.My .text segment is AX (Access Execute)You say I can change that with mprotect or objcopy.Does it mean that I can't change that with a gcc option or a gcc directive ?Etienne