Hello Friends
I had built a library on Linux.
Now i want to copy the lib folder containing symbolic links to windows.
but when i copied those to windows each link is getting exactly the same memory as the original one.
For Example:
On Linux
lrwxrwxrwx 1 msingh named 18 Mar 14 16:58 libicudata.so -> libicudata.so.
36.0
lrwxrwxrwx 1 msingh named 18 Mar 14 16:58 libicudata.so.3 6 -> libicudata.
so.36.0
-rw-r--r-- 1 msingh named 10153924 Mar 14 16:58 libicudata.so.3 6.0
On Windows
-rwx------+ 1 msingh ???????? 10153924 Mar 14 16:58 libicudata.so
-rwx------+ 1 msingh ???????? 10153924 Mar 14 16:58 libicudata.so.3 6
-rwx------+ 1 msingh ???????? 10153924 Mar 14 16:58 libicudata.so.3 6.0
How can i rectify this problem.
I had built a library on Linux.
Now i want to copy the lib folder containing symbolic links to windows.
but when i copied those to windows each link is getting exactly the same memory as the original one.
For Example:
On Linux
lrwxrwxrwx 1 msingh named 18 Mar 14 16:58 libicudata.so -> libicudata.so.
36.0
lrwxrwxrwx 1 msingh named 18 Mar 14 16:58 libicudata.so.3 6 -> libicudata.
so.36.0
-rw-r--r-- 1 msingh named 10153924 Mar 14 16:58 libicudata.so.3 6.0
On Windows
-rwx------+ 1 msingh ???????? 10153924 Mar 14 16:58 libicudata.so
-rwx------+ 1 msingh ???????? 10153924 Mar 14 16:58 libicudata.so.3 6
-rwx------+ 1 msingh ???????? 10153924 Mar 14 16:58 libicudata.so.3 6.0
How can i rectify this problem.
Comment