Closed ooxi closed 6 years ago
So this is very stupid thing. On Windows standard mkdir does not understand '-p' option, and just creates a '-p' directory. But you can't just replace internal mkdir with external one, so the version of shell utils that comes with Atmel Studio provides GNU mkdir that is called gmkdir.
To make it work on Linux, just remove 'g' from the name, or create an alias gmkdir -> mkdir.
I'd like to find a better solution, but I'm not sure there is one.
That's ok, I'll just make an alias from gmkdir
to mkdir
on my system :-)
I'm trying to compile free-dap on Ubuntu 17.10 for samd11. However when trying to
make
Makefile_std, I'm getting the following error:Replacing
@gmkdir
with@mkdir
fixes the problem.What is
@gmkdir
, why is it used instead of@mkdir
and how can I provide@gmkdir
on Ubuntu?