Document Check(C|CXX)SourceCompiles behavior more clearly (#11688)
Explicitly state up front that the macros try to link an executable and that the source provided must define 'main'.
This commit is contained in:
parent
4da2a5687b
commit
cabb6cd00e
|
@ -1,6 +1,6 @@
|
||||||
# - Check if the given C source code compiles.
|
# - Check if given C source compiles and links into an executable
|
||||||
# CHECK_C_SOURCE_COMPILES(<code> <var> [FAIL_REGEX <fail-regex>])
|
# CHECK_C_SOURCE_COMPILES(<code> <var> [FAIL_REGEX <fail-regex>])
|
||||||
# <code> - source code to try to compile
|
# <code> - source code to try to compile, must define 'main'
|
||||||
# <var> - variable to store whether the source code compiled
|
# <var> - variable to store whether the source code compiled
|
||||||
# <fail-regex> - fail if test output matches this regex
|
# <fail-regex> - fail if test output matches this regex
|
||||||
# The following variables may be set before calling this macro to
|
# The following variables may be set before calling this macro to
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# - Check if the given C++ source code compiles.
|
# - Check if given C++ source compiles and links into an executable
|
||||||
# CHECK_CXX_SOURCE_COMPILES(<code> <var> [FAIL_REGEX <fail-regex>])
|
# CHECK_CXX_SOURCE_COMPILES(<code> <var> [FAIL_REGEX <fail-regex>])
|
||||||
# <code> - source code to try to compile
|
# <code> - source code to try to compile, must define 'main'
|
||||||
# <var> - variable to store whether the source code compiled
|
# <var> - variable to store whether the source code compiled
|
||||||
# <fail-regex> - fail if test output matches this regex
|
# <fail-regex> - fail if test output matches this regex
|
||||||
# The following variables may be set before calling this macro to
|
# The following variables may be set before calling this macro to
|
||||||
|
|
Loading…
Reference in New Issue