I install the Eclipse C / C ++ IDE on a Linux desktop to cross-compile programs on the Linux RT platform using the GCC cross-compiler.
Now I am trying to configure the Eclipse C / C ++ IDE on Windows to achieve the same. But I am having problems trying to set Linker parameters.
Because on Linux, if I need to link the library libABCD.so.10.0.0, I just need to add ABCDlinker options to the linker and create a symlinkABCD.so -> libABCD.so.10.0.0
Now, how to solve the same problem in Windows, How to create symbolic links on Windows? Directly specifying the absolute path of the library did not work, since the compiler prefixed -lthe names of the libraries (which could not be found). I am
source
share