using codelite + gcc on a thin client

General questions regarding the usage of CodeLite
amwink
CodeLite Enthusiast
Posts: 25
Joined: Mon Jun 08, 2020 4:04 pm
Genuine User: Yes
IDE Question: c++
Contact:

using codelite + gcc on a thin client

Post by amwink »

I have copied CodeLite, gcc, CMake wxWidgets etc, in a combination that works brilliantly on a normal drive, to a location on a network.

On that computer the storage systems are all network shares, even though they show up as drive letters in Windows Explorer etc. (the shares are already mapped to drive letters)
But then even if I set all the paths using those drive letters and install to C:\usr\local, when I compile even the "hello world" console program, I get an error because the executable g++.exe cannot be found.

The problem lies in the fact that the compiler (or CodeLite?) has somehow found out that the drive C: is actually \\mynet\myshare and complains that "UNC paths are not supported".

Is there a way in CodeLite to trick the C++ compiler into using a network path?
Something more sophisticated than mapping a drive letter appears to be needed.

Thanks!

User avatar
eranif
CodeLite Plugin
Posts: 6372
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: using codelite + gcc on a thin client

Post by eranif »

Have you tried manually setting the toolchain paths in settings -> build settings -> compilers ?

Make sure you have read the HOW TO POST thread
Post Reply