```
__gshared a = "sdfg";

void main()
{
    asm
    {
        mov RCX, [a];
    }
}
```

Error: cannot directly load global variable 'a' with PIC code

How can i do that indirectly then ?

Reply via email to