Procházet zdrojové kódy

configure.ac: fail when no C++ compiler is found

Nathalie Furmento před 9 roky
rodič
revize
766592f653
1 změnil soubory, kde provedl 4 přidání a 0 odebrání
  1. 4 0
      configure.ac

+ 4 - 0
configure.ac

@@ -82,6 +82,10 @@ AC_CHECK_PROGS(PROG_STAT,gstat stat)
 AC_CHECK_PROGS(PROG_DATE,gdate date)
 AC_OPENMP
 
+if test x$ac_cv_env_CXX_set = x; then
+   AC_MSG_ERROR([No compiler C++ found])
+fi
+
 if test x$enable_perf_debug = xyes; then
     enable_shared=no
 fi