mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-22 05:05:11 +00:00
added message about recursion limits
This commit is contained in:
parent
90d27805b9
commit
2fb5f1d0c3
@ -153,6 +153,15 @@ will:
|
|||||||
definition is changed, only a subset of the binding code will generally need
|
definition is changed, only a subset of the binding code will generally need
|
||||||
to be recompiled.
|
to be recompiled.
|
||||||
|
|
||||||
|
"recursive template instantiation exceeded maximum depth of 256"
|
||||||
|
================================================================
|
||||||
|
|
||||||
|
If you receive an error about excessive recursive template evaluation, try
|
||||||
|
specifying a larger value, e.g. ``-ftemplate-depth=1024`` on GCC/Clang. The
|
||||||
|
culprit is generally the generation of function signatures at compile time
|
||||||
|
using C++14 template metaprogramming.
|
||||||
|
|
||||||
|
|
||||||
How can I create smaller binaries?
|
How can I create smaller binaries?
|
||||||
==================================
|
==================================
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user