This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
build: configure errors out if the C++ compiler cannot link executables.
legacy
Sam Hocevar
sam
12 years ago
parent
f7dbc33524
commit
b114090d97
1 changed files
with
9 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-0
configure.ac
+ 9
- 0
configure.ac
View File
@@ -22,6 +22,15 @@ AC_PROG_CXX
AC_PROG_CXXCPP
AC_PROG_RANLIB
dnl Check that the C++ compiler really works
AC_LANG_PUSH(C++)
AC_MSG_CHECKING(for a fully working C++ compiler)
AC_TRY_LINK([], [],
[AC_MSG_RESULT(yes)],
[AC_MSG_RESULT(no)
AC_MSG_ERROR([[C++ compiler cannot link executables]])])
AC_LANG_POP(C++)
AC_LIBTOOL_WIN32_DLL
AM_PROG_LIBTOOL
AC_LIBTOOL_CXX
Write
Preview
Loading…
Cancel
Save