You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While building the directory C:/some/p/direc is being replaced to C:/some/p:direc the culprit is line | sed -r -e 's/\/([A-Za-z])\//\1:\//g' in gcc.mk. The line needs to be updated to | sed -r -e 's/ \/([A-Za-z])\// \1:\//g'