Some projects will have a configure file that requires you to run it before make.
This configure file is used to detect whether your current environment has the dependencies required to compile the project. If not, an error will be reported.
You need to install the corresponding dependencies according to the error prompts until no errors are reported when executing the configure file.
The configure file is actually a script file. You can use shell language, python language (the configure file of nodejs is nodejs written in python language) or other languages to write it yourself
Some projects will have a configure file that requires you to run it before make.
This configure file is used to detect whether your current environment has the dependencies required to compile the project. If not, an error will be reported.
You need to install the corresponding dependencies according to the error prompts until no errors are reported when executing the configure file.
The configure file is actually a script file. You can use shell language, python language (the configure file of nodejs is nodejs written in python language) or other languages to write it yourself
Or use tools such as autoconf to generate
Ubuntu:
Centos:
Crudely install the common development toolset directly. If the project has special needs, install it separately.
centos:
yum groupinstall Development tools