Frank Heckenbach a écrit:
Maurice Lombardi wrote:
Frank Heckenbach a écrit:
I only took a quick glance at rhide. It seems to use system() which calls command.com unless SHELL is set to $DJDIR/bin/sh.exe. If you have SHELL set, that might be the problem here (though it's generally better ;-) because bash will probably interpret the `;'. Escaping the `;' with `' might also not work because it might be interpreted as a dir separator. Did you try quoting it with "" or ''? Not sure if it should work ...
Yes. The problem is that rhide does some preprocessing on the line you enter with Option/Compiler Options before storing it. If I open a second time this dialog the '' or "" have been suppressed. ' is not suppressed but gpc does not understand the remaining line. The solution is do double quote as
'"-funit-path=toto;jojo"'
(or the reverse): only the outer pair is suppressed and gpc understands the remaining !!!
If nothing else helps, multiple `--unit-path' options with only one directory each are the last resort.
This is what I was doing since a long time
Maurice