79778004

Date: 2025-09-29 10:32:45
Score: 1
Natty:
Report link

I ran into problems some time ago since most Linux distributions chose to make /bin a symlink to /usr/bin (and sbin and lib respectively), and you have defined both /bin and /usr/bin in your PATH variable. cmake then generates double definitions, which you can recognize by having a double slash // in the path name.

You can fix your build.ninja file with some simple sed scripting, and you should fix your PATH definition.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Thomas Seeling