Hacker News new | ask | show | jobs
by xigoi 637 days ago
How does make solve those proBlems?
1 comments

Parent states that it's always "cargo build" which in 90% of the cases, is true.

Except for the projects that would require something like "cargo build --feature=wayland" for example, in order to run.

So "cargo build" ends up not being universal, and adding make will make it just "make build" regardless of what flags people use with cargo, meaning it's more universal than "cargo build".