Can we please have access to the C-backend's compiler switches without having to resort to external scripts ?
Thanks!
Cheers,
Skipper
Get access to C-backend compiler switches?
Get access to C-backend compiler switches?
<< Win-11 (x64) / Mint linux (x64) / MacOS Monterey (x64) >>
Re: Get access to C-backend compiler switches?
would be handy, you could also use pragma to some extent, like if you want to optimize a function or ignore a warning
you can test if it works like this
!#pragma optimize ("-O3");
procedure foo()
or to unroll a loop
!#pragma ivdep;
While(r > #size)
you can test if it works like this
!#pragma optimize ("-O3");
procedure foo()
or to unroll a loop
!#pragma ivdep;
While(r > #size)