asyncvlsi / act

ACT hardware description language and core tools.
http://avlsi.csl.yale.edu/act
GNU General Public License v2.0
99 stars 22 forks source link

Use environment variables for c/cxx_compiler_name, if present. #44

Closed jpt4 closed 1 year ago

jpt4 commented 1 year ago

If present and defined, configure will set internal variables c_compiler_name and cxx_compiler_name using the environment variables C_COMPILER_NAME and CXX_COMPILER_NAME. This allows the user to specify, for example, mpi variants of the standard compilers. If absent or undefined, revert to current defaults.

rmanohar commented 1 year ago

This sounds good, but it undoes a recent commit to this script that added support for configure installpath CXX=cxxcompilername CC=ccompilername to specify the compiler name(s). Could you submit a pull request with your proposed change to the latest configure script? It would be essentially the same change but on a different line number...

Thanks!

jpt4 commented 1 year ago

Copy, will do.