-
Step to reproduce: clone from my
Strangely enough it will not fail on the MSYS environment. |
Beta Was this translation helpful? Give feedback.
Answered by
ghost
Jul 19, 2023
Replies: 1 comment 3 replies
-
I got the following error.
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Biswa96 Open
COS/CosBase/MINGW64/release/Any.d
you will see the paths all begin with/msys64/mingw64/
. I tried to run the commandcd /msys64
and it failed with-bash: cd: /msys64: No such file or directory
. So it seems the paths are invalid./msys64
should be replaced with/
. The rule to generate.d
files is onCOS/CosBase/include/cos/mak/compile
. I have no idea why it generated invalid paths on MINGW64. It works as expected on MSYS.Update: I know how to fix this problem. The
sed
command onCOS/CosBase/include/cos/mak/compile
needs the-z
switch to work as expected on MINGW64.