Skip to content

Commit

Permalink
-Switch to building MAME as C++17.
Browse files Browse the repository at this point in the history
* Updated sol2 to 3.2.2
* Updated pugixml to 1.10
* Increased minimum clang version to 6
* Cleaned up some stuff that can use new features
  • Loading branch information
cuavas committed Nov 14, 2020
1 parent 4db7f04 commit 55b8ca3
Show file tree
Hide file tree
Showing 564 changed files with 32,306 additions and 64,373 deletions.
2 changes: 0 additions & 2 deletions 3rdparty/pugixml/.codecov.yml

This file was deleted.

2 changes: 0 additions & 2 deletions 3rdparty/pugixml/.gitignore

This file was deleted.

16 changes: 0 additions & 16 deletions 3rdparty/pugixml/.travis.yml

This file was deleted.

84 changes: 59 additions & 25 deletions 3rdparty/pugixml/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
project(pugixml)
cmake_minimum_required(VERSION 3.0)

cmake_minimum_required(VERSION 2.6)
project(pugixml VERSION 1.10)

option(BUILD_SHARED_AND_STATIC_LIBS "Build both shared and static libraries" OFF)
option(BUILD_SHARED_LIBS "Build shared instead of static library" OFF)
option(BUILD_TESTS "Build tests" OFF)
option(BUILD_PKGCONFIG "Build in PKGCONFIG mode" OFF)
option(USE_VERSIONED_LIBDIR "Use a private subdirectory to install the headers and libs" OFF)
option(USE_POSTFIX "Use separate postfix for each configuration to make sure you can install multiple build outputs" OFF)

set(BUILD_DEFINES "" CACHE STRING "Build defines")

Expand All @@ -28,51 +30,83 @@ include(GNUInstallDirs)
mark_as_advanced(CLEAR CMAKE_INSTALL_LIBDIR CMAKE_INSTALL_INCLUDEDIR)

set(HEADERS src/pugixml.hpp src/pugiconfig.hpp)
set(SOURCES ${HEADERS} src/pugixml.cpp)
set(SOURCES src/pugixml.cpp)

if(DEFINED BUILD_DEFINES)
foreach(DEFINE ${BUILD_DEFINES})
add_definitions("-D" ${DEFINE})
endforeach()
endif()

if(BUILD_SHARED_LIBS)
add_library(pugixml SHARED ${SOURCES})
if(BUILD_SHARED_AND_STATIC_LIBS)
set(LIBRARY pugixml-static pugixml-shared)
else()
add_library(pugixml STATIC ${SOURCES})
set(LIBRARY pugixml)
endif()

# Enable C++11 long long for compilers that are capable of it
if(NOT ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} STRLESS 3.1 AND ";${CMAKE_CXX_COMPILE_FEATURES};" MATCHES ";cxx_long_long_type;")
target_compile_features(pugixml PUBLIC cxx_long_long_type)
if(BUILD_SHARED_AND_STATIC_LIBS)
add_library(pugixml-static STATIC ${HEADERS} ${SOURCES})
add_library(pugixml-shared SHARED ${HEADERS} ${SOURCES})
else()
if(BUILD_SHARED_LIBS)
add_library(pugixml SHARED ${HEADERS} ${SOURCES})
else()
add_library(pugixml STATIC ${HEADERS} ${SOURCES})
endif()
endif()

# Export symbols for shared library builds
if(BUILD_SHARED_AND_STATIC_LIBS AND MSVC)
target_compile_definitions(pugixml-shared PRIVATE "PUGIXML_API=__declspec(dllexport)")
endif()

set_target_properties(pugixml PROPERTIES VERSION 1.7 SOVERSION 1)
get_target_property(PUGIXML_VERSION_STRING pugixml VERSION)
if(BUILD_SHARED_LIBS AND MSVC)
target_compile_definitions(pugixml PRIVATE "PUGIXML_API=__declspec(dllexport)")
endif()

if(BUILD_PKGCONFIG)
if(USE_VERSIONED_LIBDIR)
# Install library into its own directory under LIBDIR
set(INSTALL_SUFFIX /pugixml-${PUGIXML_VERSION_STRING})
set(INSTALL_SUFFIX /pugixml-${pugixml_VERSION})
endif()

install(TARGETS pugixml EXPORT pugixml-config
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}${INSTALL_SUFFIX}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}${INSTALL_SUFFIX}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
foreach(TARGET ${LIBRARY})
# Enable C++11 long long for compilers that are capable of it
if(NOT ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} STRLESS 3.1 AND ";${CMAKE_CXX_COMPILE_FEATURES};" MATCHES ";cxx_long_long_type;")
target_compile_features(${TARGET} PUBLIC cxx_long_long_type)
endif()

set_target_properties(${TARGET} PROPERTIES VERSION ${PROJECT_VERSION} SOVERSION ${PROJECT_VERSION_MAJOR})

target_include_directories(${TARGET} PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/src>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}${INSTALL_SUFFIX}>)

if(USE_POSTFIX)
set_target_properties(${TARGET} PROPERTIES DEBUG_POSTFIX "_d" MINSIZEREL_POSTFIX "_m" RELWITHDEBINFO_POSTFIX "_r")
endif()
endforeach()

install(TARGETS ${LIBRARY} EXPORT pugixml-config
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}${INSTALL_SUFFIX}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}${INSTALL_SUFFIX}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})

install(FILES ${HEADERS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}${INSTALL_SUFFIX})
install(EXPORT pugixml-config DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/pugixml)

if(BUILD_PKGCONFIG)
configure_file(scripts/pugixml.pc.in ${PROJECT_BINARY_DIR}/pugixml.pc @ONLY)
install(FILES ${PROJECT_BINARY_DIR}/pugixml.pc DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
endif()
configure_file(scripts/pugixml.pc.in ${PROJECT_BINARY_DIR}/pugixml.pc @ONLY)
install(FILES ${PROJECT_BINARY_DIR}/pugixml.pc DESTINATION ${CMAKE_INSTALL_FULL_LIBDIR}/pkgconfig)

if(BUILD_TESTS)
file(GLOB TEST_SOURCES tests/*.cpp)
file(GLOB FUZZ_SOURCES tests/fuzz_*.cpp)
list(REMOVE_ITEM TEST_SOURCES ${FUZZ_SOURCES})

add_executable(check ${TEST_SOURCES})
target_link_libraries(check pugixml)
add_custom_command(TARGET check POST_BUILD COMMAND check WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
endif()
if(BUILD_SHARED_AND_STATIC_LIBS)
target_link_libraries(check pugixml-static)
else()
target_link_libraries(check pugixml)
endif()
add_custom_command(TARGET check POST_BUILD COMMAND check WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
endif()
100 changes: 0 additions & 100 deletions 3rdparty/pugixml/Makefile

This file was deleted.

44 changes: 0 additions & 44 deletions 3rdparty/pugixml/README.md

This file was deleted.

16 changes: 0 additions & 16 deletions 3rdparty/pugixml/appveyor.yml

This file was deleted.

63 changes: 0 additions & 63 deletions 3rdparty/pugixml/contrib/foreach.hpp

This file was deleted.

7 changes: 0 additions & 7 deletions 3rdparty/pugixml/docs/config.adoc

This file was deleted.

Binary file modified 3rdparty/pugixml/docs/images/dom_tree.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

1 comment on commit 55b8ca3

@cuavas
Copy link
Member Author

@cuavas cuavas commented on 55b8ca3 Nov 14, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since we’re not doing a release this month, we may as well get a bit more testing time with C++17. The biggest changes by line count are the updated third-party libraries that didn’t build as C++17 (sol2 and pugixml).

The other changes here are mostly:

  • Prettier nested namespace syntax
  • Some if constexpr where it can replace SFINAE tricks
  • std::gcd and std::void_t replacing our home-grown versions
  • [[fallthrough]] attributes where I’m fairly confident it’s the right thing to do
  • Using the return value of std::vector::emplace_back

Please sign in to comment.