Remove stanc flags munging for `cpp_options$stan_opencl`
This code: https://github.com/stan-dev/cmdstanr/blob/edccf2d2f6449e7d80626a3ee6cc93845e82915b/R/model.R#L538-L540
Is redundant with the logic already in the cmdstan makefiles: https://github.com/stan-dev/cmdstan/blob/b2d14a30df8a843115aae9045ff5c01a031561e7/make/program#L59-L62
And is generating invalid calls to stanc3, see https://discourse.mc-stan.org/t/cannot-complile-and-then-use-gpu/40315
After chatting with @WardBrian, we're going to hold off on changing this in cmdstanr and probably fix it in the compiler via https://github.com/stan-dev/stanc3/pull/1541 or maybe in the cmdstan makefiles.
In 2.38, stanc will just ignore repeated flags, so this is resolved
Great, thanks!