Re: [PATCH v2] Add information how to fix common build error on Windows in symlink-install-tree

2023-05-18 Thread Michael Tokarev
05.05.2023 00:11, Mateusz Krawczuk wrote: .. except BaseException as e: if not isinstance(e, OSError) or e.errno != errno.EEXIST: +if os.name == 'nt': +print('Please enable Developer Mode to support soft link ' + 'without Administra

Re: [PATCH v2] Add information how to fix common build error on Windows in symlink-install-tree

2023-05-17 Thread John Snow
On Thu, May 4, 2023 at 5:11 PM Mateusz Krawczuk wrote: > > By default, Windows doesn't allow to create soft links for user account and > only administrator is allowed to do this. To fix this problem you have to > raise your permissions or enable Developer Mode, which available since > Windows 1

[PATCH v2] Add information how to fix common build error on Windows in symlink-install-tree

2023-05-04 Thread Mateusz Krawczuk
By default, Windows doesn't allow to create soft links for user account and only administrator is allowed to do this. To fix this problem you have to raise your permissions or enable Developer Mode, which available since Windows 10. Additional explanation when build fails will allow developer to