-
-
Notifications
You must be signed in to change notification settings - Fork 7k
missing support for symlinks for windows #6893
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Component: IDE
The Arduino IDE
feature request
A request to make an enhancement (not a bug fix)
IDE 1.9.x Beta
Related to the Arduino IDE Beta Build
Milestone
Comments
facchinm
added a commit
that referenced
this issue
Dec 7, 2017
facchinm
added a commit
that referenced
this issue
Dec 13, 2017
facchinm
added a commit
that referenced
this issue
Jan 11, 2018
facchinm
added a commit
to facchinm/Arduino
that referenced
this issue
Jan 22, 2018
facchinm
added a commit
that referenced
this issue
Feb 16, 2018
facchinm
added a commit
that referenced
this issue
Apr 12, 2018
facchinm
added a commit
that referenced
this issue
Apr 17, 2018
facchinm
added a commit
to facchinm/Arduino
that referenced
this issue
May 8, 2018
cmaglie
pushed a commit
to facchinm/Arduino
that referenced
this issue
May 8, 2018
cmaglie
pushed a commit
to facchinm/Arduino
that referenced
this issue
May 9, 2018
facchinm
added a commit
that referenced
this issue
May 14, 2018
facchinm
added a commit
that referenced
this issue
May 14, 2018
facchinm
added a commit
that referenced
this issue
May 15, 2018
cmaglie
pushed a commit
that referenced
this issue
May 17, 2018
facchinm
added a commit
that referenced
this issue
May 22, 2018
facchinm
added a commit
that referenced
this issue
May 30, 2018
facchinm
added a commit
that referenced
this issue
Jun 12, 2018
facchinm
added a commit
that referenced
this issue
Jul 19, 2018
facchinm
added a commit
that referenced
this issue
Aug 20, 2018
facchinm
added a commit
that referenced
this issue
Aug 23, 2018
facchinm
added a commit
that referenced
this issue
Sep 10, 2018
facchinm
added a commit
that referenced
this issue
Oct 5, 2018
facchinm
added a commit
that referenced
this issue
Oct 16, 2018
facchinm
added a commit
that referenced
this issue
Nov 21, 2018
facchinm
added a commit
that referenced
this issue
Dec 5, 2018
facchinm
added a commit
that referenced
this issue
Dec 13, 2018
facchinm
added a commit
that referenced
this issue
Jan 18, 2019
facchinm
added a commit
that referenced
this issue
Jan 19, 2019
facchinm
added a commit
that referenced
this issue
Jan 21, 2019
facchinm
added a commit
that referenced
this issue
Mar 7, 2019
facchinm
added a commit
that referenced
this issue
Mar 8, 2019
facchinm
added a commit
that referenced
this issue
Mar 18, 2019
facchinm
added a commit
that referenced
this issue
May 14, 2019
facchinm
added a commit
that referenced
this issue
May 14, 2019
facchinm
added a commit
that referenced
this issue
Jul 18, 2019
facchinm
added a commit
that referenced
this issue
Jul 18, 2019
facchinm
added a commit
that referenced
this issue
Jul 19, 2019
facchinm
added a commit
that referenced
this issue
Jul 23, 2019
facchinm
added a commit
that referenced
this issue
Sep 20, 2019
facchinm
added a commit
that referenced
this issue
Sep 30, 2019
facchinm
added a commit
that referenced
this issue
Oct 22, 2019
facchinm
added a commit
that referenced
this issue
Feb 13, 2020
facchinm
added a commit
that referenced
this issue
Mar 23, 2020
facchinm
added a commit
that referenced
this issue
Apr 7, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Component: IDE
The Arduino IDE
feature request
A request to make an enhancement (not a bug fix)
IDE 1.9.x Beta
Related to the Arduino IDE Beta Build
unpacking a platform package fails for windows if the archive file contains a symlink.
This is because Platform.java defines the (Unix) command
ln -s
for this purpose and windows/Platform.java does not overload this with an equivalent definition for windows.An example of the full error message can be found in issue report #25 on Sduino project where I use symlinks in a platform package.
Symlinks are supported since Windows Vista by the command
mklink
. I suggest a modification forsrc/processing/app/windows/Platform.java
like this (untested, since I don't have all this java stuff set up here):A similar modification might be useful for hardlinks as well.
The text was updated successfully, but these errors were encountered: