Closed
Description
As far as I know, getting rid of ./configure
is a desirable goal. As I understand it, it is kept mainly for compatibility reasons:
- It's used in the "standard unix workflow", ie.
./configure && make && make install
- which is used by linux distros shipping rust?
- It's used in our ci infrastructure
Making ./configure
produce a config.toml
file seems like a potential step in the right direction and would allow getting rid of a nice chunk of compatibility code in rustbuild.
Open questions:
- Do we want to get rid of
./configure
in the near future? In that case making it produce aconfig.toml
first is probably not worth the effort. - How complicated would it be to make
./configure
generateconfig.toml
?