+16
−11
Loading
Gitlab 现已全面支持 git over ssh 与 git over https。通过 HTTPS 访问请配置带有 read_repository / write_repository 权限的 Personal access token。通过 SSH 端口访问请使用 22 端口或 13389 端口。如果使用CAS注册了账户但不知道密码,可以自行至设置中更改;如有其他问题,请发邮件至 service@cra.moe 寻求协助。
Fixes: #37637 toolchain_parse_make_rule() parses depfiles and converted `\\` to the CMake list separator `;`. However, gcc -M might create depfiles with windows path separator `\` causing this conversion to fail, as a path like: c:\...\zephyr\samples\drivers\led_ws2812\nrf52-bindings.h resulting in a file list as: c:;...;zephyr;samples;drivers;led_ws2812;nrf52-bindings.h which results in a CMake configure dependency to be added to `C:`. As C: is always newer than the build.ninja file, this resulted in continues CMake re-invocation. As a small side-note, the `\` in file name did only occur in situations where a relative past had been used elsewhere in the build system, such as here: https://github.com/zephyrproject-rtos/zephyr/blob/\ c3050a5a/samples/drivers/led_ws2812/\ boards/nrf52dk_nrf52832.overlay#L9 To ensure proper handling of files, then all files are converted to CMake paths, that is with forward slashes: `/` Signed-off-by:Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
CRA Git | Maintained and supported by SUSTech CRA and CCSE