Bobby R. Bruce has submitted this change. ( https://gem5-review.googlesource.com/c/public/gem5/+/21119 )

Change subject: ext: Updated Pybind11 to version 2.4.1.
......................................................................

ext: Updated Pybind11 to version 2.4.1.

This updates Pybind11 from version 2.2.1 to version 2.4.1. This fixes
warning/error received when "<experiment/optional>" is used when
compiling using c++14 with clang. It should be noted that
"ext/pybind11/include/pybind11/std.h" has been changed to include a fix
added by commit ba42457254cc362eddc099f22b60d469cc6369e0. This is
necessary to avoid build errors.

Built: Linux (gcc, c++11) and MacOS (clang, c++14).
Tested: Ran quick tests for X86, ARM, and RISC-V.
Deprecates: https://gem5-review.googlesource.com/c/public/gem5/+/21019
Change-Id: Ie9783511cb6be50136076a55330e645f4f36d075
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/21119
Reviewed-by: Jason Lowe-Power <ja...@lowepower.com>
Reviewed-by: Andreas Sandberg <andreas.sandb...@arm.com>
Maintainer: Jason Lowe-Power <ja...@lowepower.com>
Maintainer: Andreas Sandberg <andreas.sandb...@arm.com>
Tested-by: kokoro <noreply+kok...@google.com>
---
M ext/pybind11/.appveyor.yml
M ext/pybind11/.gitignore
M ext/pybind11/.gitmodules
M ext/pybind11/.travis.yml
M ext/pybind11/CMakeLists.txt
M ext/pybind11/CONTRIBUTING.md
M ext/pybind11/LICENSE
M ext/pybind11/README.md
M ext/pybind11/docs/advanced/cast/chrono.rst
M ext/pybind11/docs/advanced/cast/eigen.rst
M ext/pybind11/docs/advanced/cast/overview.rst
M ext/pybind11/docs/advanced/cast/stl.rst
M ext/pybind11/docs/advanced/cast/strings.rst
M ext/pybind11/docs/advanced/classes.rst
M ext/pybind11/docs/advanced/exceptions.rst
M ext/pybind11/docs/advanced/functions.rst
M ext/pybind11/docs/advanced/misc.rst
M ext/pybind11/docs/advanced/pycpp/numpy.rst
M ext/pybind11/docs/changelog.rst
M ext/pybind11/docs/classes.rst
M ext/pybind11/docs/compiling.rst
M ext/pybind11/docs/conf.py
M ext/pybind11/docs/faq.rst
M ext/pybind11/docs/intro.rst
M ext/pybind11/docs/reference.rst
M ext/pybind11/include/pybind11/attr.h
M ext/pybind11/include/pybind11/cast.h
M ext/pybind11/include/pybind11/chrono.h
M ext/pybind11/include/pybind11/complex.h
M ext/pybind11/include/pybind11/detail/class.h
M ext/pybind11/include/pybind11/detail/common.h
M ext/pybind11/include/pybind11/detail/descr.h
M ext/pybind11/include/pybind11/detail/init.h
M ext/pybind11/include/pybind11/detail/internals.h
M ext/pybind11/include/pybind11/detail/typeid.h
M ext/pybind11/include/pybind11/eigen.h
M ext/pybind11/include/pybind11/embed.h
M ext/pybind11/include/pybind11/functional.h
M ext/pybind11/include/pybind11/iostream.h
M ext/pybind11/include/pybind11/numpy.h
M ext/pybind11/include/pybind11/pybind11.h
M ext/pybind11/include/pybind11/pytypes.h
M ext/pybind11/include/pybind11/stl.h
M ext/pybind11/include/pybind11/stl_bind.h
M ext/pybind11/pybind11/__init__.py
M ext/pybind11/pybind11/_version.py
M ext/pybind11/setup.cfg
M ext/pybind11/setup.py
M ext/pybind11/tests/CMakeLists.txt
M ext/pybind11/tests/conftest.py
M ext/pybind11/tests/constructor_stats.h
A ext/pybind11/tests/cross_module_gil_utils.cpp
M ext/pybind11/tests/pytest.ini
A ext/pybind11/tests/test_async.cpp
A ext/pybind11/tests/test_async.py
M ext/pybind11/tests/test_buffers.cpp
M ext/pybind11/tests/test_buffers.py
M ext/pybind11/tests/test_builtin_casters.cpp
M ext/pybind11/tests/test_builtin_casters.py
M ext/pybind11/tests/test_call_policies.cpp
M ext/pybind11/tests/test_callbacks.cpp
M ext/pybind11/tests/test_callbacks.py
M ext/pybind11/tests/test_chrono.cpp
M ext/pybind11/tests/test_chrono.py
M ext/pybind11/tests/test_class.cpp
M ext/pybind11/tests/test_class.py
M ext/pybind11/tests/test_constants_and_functions.cpp
M ext/pybind11/tests/test_copy_move.cpp
M ext/pybind11/tests/test_eigen.cpp
M ext/pybind11/tests/test_eigen.py
M ext/pybind11/tests/test_embed/CMakeLists.txt
M ext/pybind11/tests/test_embed/catch.cpp
A ext/pybind11/tests/test_embed/external_module.cpp
M ext/pybind11/tests/test_embed/test_interpreter.cpp
M ext/pybind11/tests/test_enum.cpp
M ext/pybind11/tests/test_enum.py
M ext/pybind11/tests/test_exceptions.cpp
M ext/pybind11/tests/test_exceptions.py
M ext/pybind11/tests/test_factory_constructors.cpp
A ext/pybind11/tests/test_gil_scoped.cpp
A ext/pybind11/tests/test_gil_scoped.py
M ext/pybind11/tests/test_iostream.py
M ext/pybind11/tests/test_kwargs_and_defaults.cpp
M ext/pybind11/tests/test_kwargs_and_defaults.py
M ext/pybind11/tests/test_local_bindings.py
M ext/pybind11/tests/test_methods_and_attributes.cpp
M ext/pybind11/tests/test_methods_and_attributes.py
M ext/pybind11/tests/test_multiple_inheritance.cpp
M ext/pybind11/tests/test_numpy_array.cpp
M ext/pybind11/tests/test_numpy_array.py
M ext/pybind11/tests/test_numpy_dtypes.cpp
M ext/pybind11/tests/test_numpy_dtypes.py
M ext/pybind11/tests/test_opaque_types.cpp
M ext/pybind11/tests/test_opaque_types.py
M ext/pybind11/tests/test_operator_overloading.cpp
M ext/pybind11/tests/test_operator_overloading.py
M ext/pybind11/tests/test_pickling.py
M ext/pybind11/tests/test_pytypes.cpp
M ext/pybind11/tests/test_pytypes.py
M ext/pybind11/tests/test_sequences_and_iterators.cpp
M ext/pybind11/tests/test_sequences_and_iterators.py
M ext/pybind11/tests/test_smart_ptr.cpp
M ext/pybind11/tests/test_smart_ptr.py
M ext/pybind11/tests/test_stl.cpp
M ext/pybind11/tests/test_stl.py
M ext/pybind11/tests/test_stl_binders.py
A ext/pybind11/tests/test_tagbased_polymorphic.cpp
A ext/pybind11/tests/test_tagbased_polymorphic.py
A ext/pybind11/tests/test_union.cpp
A ext/pybind11/tests/test_union.py
M ext/pybind11/tests/test_virtual_functions.cpp
M ext/pybind11/tests/test_virtual_functions.py
M ext/pybind11/tools/FindPythonLibsNew.cmake
M ext/pybind11/tools/check-style.sh
M ext/pybind11/tools/mkdoc.py
M ext/pybind11/tools/pybind11Config.cmake.in
M ext/pybind11/tools/pybind11Tools.cmake
117 files changed, 4,325 insertions(+), 1,141 deletions(-)

Approvals:
Jason Lowe-Power: Looks good to me, but someone else must approve; Looks good to me, approved
  Andreas Sandberg: Looks good to me, approved; Looks good to me, approved
  kokoro: Regressions pass




--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/21119
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: master
Gerrit-Change-Id: Ie9783511cb6be50136076a55330e645f4f36d075
Gerrit-Change-Number: 21119
Gerrit-PatchSet: 2
Gerrit-Owner: Bobby R. Bruce <bbr...@ucdavis.edu>
Gerrit-Reviewer: Andrea Mondelli <andrea.monde...@ucf.edu>
Gerrit-Reviewer: Andreas Sandberg <andreas.sandb...@arm.com>
Gerrit-Reviewer: Anthony Gutierrez <anthony.gutier...@amd.com>
Gerrit-Reviewer: Bobby R. Bruce <bbr...@ucdavis.edu>
Gerrit-Reviewer: Jason Lowe-Power <ja...@lowepower.com>
Gerrit-Reviewer: kokoro <noreply+kok...@google.com>
Gerrit-MessageType: merged
_______________________________________________
gem5-dev mailing list
gem5-dev@gem5.org
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to