From 1ccfdaf9e4025343039b46988f80291413cc86cd Mon Sep 17 00:00:00 2001 From: Isaac Morales Date: Thu, 11 Jul 2024 12:58:53 +0200 Subject: [PATCH 01/13] Replaced genreflex with rootcling --- cmake/FindROOT.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/FindROOT.cmake b/cmake/FindROOT.cmake index 50bc06ee8..2b341eed5 100644 --- a/cmake/FindROOT.cmake +++ b/cmake/FindROOT.cmake @@ -198,7 +198,7 @@ function(REFLEX_GENERATE_DICTIONARY dictionary) #set(rootmapopts --rootmap=${rootmapname} --rootmap-lib=${libprefix}${dictionary}Dict) #---Actual command---------------------------------------- add_custom_command(OUTPUT ${gensrcdict} ${rootmapname} ${dictionary}_rdict.pcm - COMMAND ${LAUNCHER} ${GENREFLEX_EXECUTABLE} ${headerfiles} -o ${gensrcdict} ${rootmapopts} --select=${selectionfile} --noIncludePaths + COMMAND ${LAUNCHER} ${ROOTCLING_EXECUTABLE} --reflex -o ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} --noIncludePaths ${ARG_OPTIONS} ${includedirs} ${definitions} DEPENDS ${headerfiles} ${selectionfile}) endfunction() From 2e4dcd79f9f952cf5b5f7d7c747e4de2d8e2b205 Mon Sep 17 00:00:00 2001 From: Isaac Morales Date: Wed, 17 Jul 2024 11:39:57 +0200 Subject: [PATCH 02/13] Added solution from FairROOT/#385 --- cmake/FindROOT.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/FindROOT.cmake b/cmake/FindROOT.cmake index 2b341eed5..efd2203c2 100644 --- a/cmake/FindROOT.cmake +++ b/cmake/FindROOT.cmake @@ -198,7 +198,7 @@ function(REFLEX_GENERATE_DICTIONARY dictionary) #set(rootmapopts --rootmap=${rootmapname} --rootmap-lib=${libprefix}${dictionary}Dict) #---Actual command---------------------------------------- add_custom_command(OUTPUT ${gensrcdict} ${rootmapname} ${dictionary}_rdict.pcm - COMMAND ${LAUNCHER} ${ROOTCLING_EXECUTABLE} --reflex -o ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} --noIncludePaths + COMMAND ${LAUNCHER} ${ROOTCLING_EXECUTABLE} --reflex -o ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} --noIncludePaths -inlineInputHeader ${ARG_OPTIONS} ${includedirs} ${definitions} DEPENDS ${headerfiles} ${selectionfile}) endfunction() From 0c3e4c9808ab694d63e30433323e05f8fe34f1b8 Mon Sep 17 00:00:00 2001 From: Isaac Morales Date: Wed, 24 Jul 2024 16:16:02 +0200 Subject: [PATCH 03/13] Get rid of genreflex instances --- cmake/BioDynaMo.cmake | 4 ++-- cmake/FindROOT.cmake | 4 +--- cmake/utils.cmake | 5 ++--- util/makefile-build/bdm-code-generation | 2 +- 4 files changed, 6 insertions(+), 9 deletions(-) diff --git a/cmake/BioDynaMo.cmake b/cmake/BioDynaMo.cmake index 24f9080ab..12727eadb 100644 --- a/cmake/BioDynaMo.cmake +++ b/cmake/BioDynaMo.cmake @@ -108,7 +108,7 @@ function(build_shared_library TARGET) # We always need dictionaries for the plugins (plugin manager requires class # information) if(dict OR DEFINED ARG_PLUGIN) - # generate dictionary using genreflex + # generate dictionary using rootcling reflex set(DICT_FILE "${CMAKE_CURRENT_BINARY_DIR}/lib${TARGET}_dict") set(BDM_DICT_FILE "${CMAKE_CURRENT_BINARY_DIR}/lib${TARGET}_bdm_dict.cc") @@ -179,7 +179,7 @@ function(generate_rootlogon) set(CONTENT "${CONTENT}\n gROOT->ProcessLine(\"cout << \\\"ERROR: Loading BioDynaMo into ROOT failed!\\\" << endl\;\")\;") set(CONTENT "${CONTENT}\n gROOT->ProcessLine(\"cout << \\\" BioDynaMo was not built with dict=ON\\\" << endl\;\")\;") endif() - + set(CONTENT "${CONTENT}\n}\n") file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/rootlogon.C" ${CONTENT}) endfunction(generate_rootlogon) diff --git a/cmake/FindROOT.cmake b/cmake/FindROOT.cmake index efd2203c2..d53c56e54 100644 --- a/cmake/FindROOT.cmake +++ b/cmake/FindROOT.cmake @@ -97,8 +97,6 @@ mark_as_advanced(ROOT_CONFIG_EXECUTABLE) include(CMakeParseArguments) find_program(ROOTCLING_EXECUTABLE rootcling HINTS "$ENV{ROOTSYS}/bin" "$ENV{BDM_ROOT_DIR}/bin" "${CMAKE_THIRD_PARTY_DIR}/root/bin") -find_program(GENREFLEX_EXECUTABLE genreflex - HINTS "$ENV{ROOTSYS}/bin" "$ENV{BDM_ROOT_DIR}/bin" "${CMAKE_THIRD_PARTY_DIR}/root/bin") #find_package(GCCXML) # We use the launcher script to emulate a `source thisbdm.sh` call @@ -198,7 +196,7 @@ function(REFLEX_GENERATE_DICTIONARY dictionary) #set(rootmapopts --rootmap=${rootmapname} --rootmap-lib=${libprefix}${dictionary}Dict) #---Actual command---------------------------------------- add_custom_command(OUTPUT ${gensrcdict} ${rootmapname} ${dictionary}_rdict.pcm - COMMAND ${LAUNCHER} ${ROOTCLING_EXECUTABLE} --reflex -o ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} --noIncludePaths -inlineInputHeader + COMMAND ${LAUNCHER} ${ROOTCLING_EXECUTABLE} --reflex -o ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} --noIncludePaths -inlineInputHeader -cxxmodule ${ARG_OPTIONS} ${includedirs} ${definitions} DEPENDS ${headerfiles} ${selectionfile}) endfunction() diff --git a/cmake/utils.cmake b/cmake/utils.cmake index d7fc23074..e3c895b1c 100644 --- a/cmake/utils.cmake +++ b/cmake/utils.cmake @@ -109,7 +109,6 @@ function(verify_ROOT) SET(ROOT_ETC_DIR ${ROOT_ETC_DIR} PARENT_SCOPE) SET(ROOT_CONFIG_EXECUTABLE ${ROOT_CONFIG_EXECUTABLE} PARENT_SCOPE) SET(ROOTCLING_EXECUTABLE ${ROOTCLING_EXECUTABLE} PARENT_SCOPE) - SET(GENREFLEX_EXECUTABLE ${GENREFLEX_EXECUTABLE} PARENT_SCOPE) else() # When ROOT is found, but it's not C++17 compliant, we exit the installation, because ROOT needs # to be properly sourced prior to invoking CMake (CMake cannot do this for us, because it requires @@ -549,12 +548,12 @@ Unset the environment variable BDM_LOCAL_LFS to download the file.") DOWNLOAD_DIR ${DEST_PARENT} SOURCE_DIR ${DEST} ) - + FetchContent_GetProperties(${TAR_FILENAME}) if (NOT ${TAR_FILENAME}_POPULATED) FetchContent_Populate(${TAR_FILENAME}) endif() - + # Remove subbuild files, we don't need them file(REMOVE_RECURSE ${CMAKE_BINARY_DIR}/_deps/) endif() diff --git a/util/makefile-build/bdm-code-generation b/util/makefile-build/bdm-code-generation index cd7dce8b8..1edcf505b 100755 --- a/util/makefile-build/bdm-code-generation +++ b/util/makefile-build/bdm-code-generation @@ -58,7 +58,7 @@ CXX_INCLUDES=$(${BDM_CONFIG} --cxxincludes | sed 's|-isystem |-I|g') CXX_DEFINES=$(${BDM_CONFIG} --cxxdefines) -genreflex ${HEADERS} -o ${DICT} --noIncludePaths --select=${SELECTIONFILE} ${CXX_DEFINES} ${CXX_INCLUDES} $ADDITIONAL_CXX_FLAGS +rootcling -reflex -o ${DICT} ${HEADERS} --noIncludePaths -inlineInputHeader --select=${SELECTIONFILE} ${CXX_DEFINES} ${CXX_INCLUDES} $ADDITIONAL_CXX_FLAGS # Generate bdm dictionary and append to DICT BDM_DICT=$(mktemp) From aacbf409cded276ce184514fa14a39f8196b31af Mon Sep 17 00:00:00 2001 From: Isaac Morales Date: Wed, 24 Jul 2024 16:29:00 +0200 Subject: [PATCH 04/13] Remove -cxxmodule flag --- cmake/FindROOT.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/FindROOT.cmake b/cmake/FindROOT.cmake index d53c56e54..7e7b01a19 100644 --- a/cmake/FindROOT.cmake +++ b/cmake/FindROOT.cmake @@ -196,7 +196,7 @@ function(REFLEX_GENERATE_DICTIONARY dictionary) #set(rootmapopts --rootmap=${rootmapname} --rootmap-lib=${libprefix}${dictionary}Dict) #---Actual command---------------------------------------- add_custom_command(OUTPUT ${gensrcdict} ${rootmapname} ${dictionary}_rdict.pcm - COMMAND ${LAUNCHER} ${ROOTCLING_EXECUTABLE} --reflex -o ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} --noIncludePaths -inlineInputHeader -cxxmodule + COMMAND ${LAUNCHER} ${ROOTCLING_EXECUTABLE} --reflex -o ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} --noIncludePaths -inlineInputHeader ${ARG_OPTIONS} ${includedirs} ${definitions} DEPENDS ${headerfiles} ${selectionfile}) endfunction() From 9a7680a23e60f0ff2dccdda8da425b8537fc4e12 Mon Sep 17 00:00:00 2001 From: Isaac Morales Date: Sat, 27 Jul 2024 17:28:09 +0200 Subject: [PATCH 05/13] Remove LAUNCHER invocation --- cmake/FindROOT.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/FindROOT.cmake b/cmake/FindROOT.cmake index 7e7b01a19..21fc7c527 100644 --- a/cmake/FindROOT.cmake +++ b/cmake/FindROOT.cmake @@ -196,7 +196,7 @@ function(REFLEX_GENERATE_DICTIONARY dictionary) #set(rootmapopts --rootmap=${rootmapname} --rootmap-lib=${libprefix}${dictionary}Dict) #---Actual command---------------------------------------- add_custom_command(OUTPUT ${gensrcdict} ${rootmapname} ${dictionary}_rdict.pcm - COMMAND ${LAUNCHER} ${ROOTCLING_EXECUTABLE} --reflex -o ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} --noIncludePaths -inlineInputHeader + COMMAND ${ROOTCLING_EXECUTABLE} --reflex -o ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} --noIncludePaths -inlineInputHeader ${ARG_OPTIONS} ${includedirs} ${definitions} DEPENDS ${headerfiles} ${selectionfile}) endfunction() From e79411fb54c6979da4fcefd88deca084ac808705 Mon Sep 17 00:00:00 2001 From: Isaac Morales Date: Sat, 27 Jul 2024 18:33:10 +0200 Subject: [PATCH 06/13] Add -f flag to overwrite files According to https://github.com/root-project/root/blob/fb17cef3cb381772f7d930c213801b82b65fef52/core/dictgen/src/rootcling_impl.cxx#L5572 and genreflex -debug, the -f is needed --- cmake/FindROOT.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/FindROOT.cmake b/cmake/FindROOT.cmake index 21fc7c527..e666b14cc 100644 --- a/cmake/FindROOT.cmake +++ b/cmake/FindROOT.cmake @@ -196,7 +196,7 @@ function(REFLEX_GENERATE_DICTIONARY dictionary) #set(rootmapopts --rootmap=${rootmapname} --rootmap-lib=${libprefix}${dictionary}Dict) #---Actual command---------------------------------------- add_custom_command(OUTPUT ${gensrcdict} ${rootmapname} ${dictionary}_rdict.pcm - COMMAND ${ROOTCLING_EXECUTABLE} --reflex -o ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} --noIncludePaths -inlineInputHeader + COMMAND ${ROOTCLING_EXECUTABLE} --reflex -f ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} --noIncludePaths -inlineInputHeader ${ARG_OPTIONS} ${includedirs} ${definitions} DEPENDS ${headerfiles} ${selectionfile}) endfunction() From 083b433d4586e29374daeb868dd1fc2b5328f85c Mon Sep 17 00:00:00 2001 From: Isaac Morales Date: Sat, 27 Jul 2024 18:38:11 +0200 Subject: [PATCH 07/13] Removed double minus to keep the code clean --- cmake/FindROOT.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/FindROOT.cmake b/cmake/FindROOT.cmake index e666b14cc..9501baa22 100644 --- a/cmake/FindROOT.cmake +++ b/cmake/FindROOT.cmake @@ -196,7 +196,7 @@ function(REFLEX_GENERATE_DICTIONARY dictionary) #set(rootmapopts --rootmap=${rootmapname} --rootmap-lib=${libprefix}${dictionary}Dict) #---Actual command---------------------------------------- add_custom_command(OUTPUT ${gensrcdict} ${rootmapname} ${dictionary}_rdict.pcm - COMMAND ${ROOTCLING_EXECUTABLE} --reflex -f ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} --noIncludePaths -inlineInputHeader + COMMAND ${ROOTCLING_EXECUTABLE} -reflex -f ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} -noIncludePaths -inlineInputHeader ${ARG_OPTIONS} ${includedirs} ${definitions} DEPENDS ${headerfiles} ${selectionfile}) endfunction() From 8139c5be5d23dbf8443f27bfaa90e84e8a5aec73 Mon Sep 17 00:00:00 2001 From: Isaac Morales Date: Mon, 5 Aug 2024 13:48:21 +0200 Subject: [PATCH 08/13] Fix whitespace changes --- cmake/BioDynaMo.cmake | 2 +- cmake/utils.cmake | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake/BioDynaMo.cmake b/cmake/BioDynaMo.cmake index 12727eadb..7b8b60125 100644 --- a/cmake/BioDynaMo.cmake +++ b/cmake/BioDynaMo.cmake @@ -179,7 +179,7 @@ function(generate_rootlogon) set(CONTENT "${CONTENT}\n gROOT->ProcessLine(\"cout << \\\"ERROR: Loading BioDynaMo into ROOT failed!\\\" << endl\;\")\;") set(CONTENT "${CONTENT}\n gROOT->ProcessLine(\"cout << \\\" BioDynaMo was not built with dict=ON\\\" << endl\;\")\;") endif() - + set(CONTENT "${CONTENT}\n}\n") file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/rootlogon.C" ${CONTENT}) endfunction(generate_rootlogon) diff --git a/cmake/utils.cmake b/cmake/utils.cmake index e3c895b1c..f6309066d 100644 --- a/cmake/utils.cmake +++ b/cmake/utils.cmake @@ -548,12 +548,12 @@ Unset the environment variable BDM_LOCAL_LFS to download the file.") DOWNLOAD_DIR ${DEST_PARENT} SOURCE_DIR ${DEST} ) - + FetchContent_GetProperties(${TAR_FILENAME}) if (NOT ${TAR_FILENAME}_POPULATED) FetchContent_Populate(${TAR_FILENAME}) endif() - + # Remove subbuild files, we don't need them file(REMOVE_RECURSE ${CMAKE_BINARY_DIR}/_deps/) endif() From 21ad68d2a4547878e776f0068fcde07b756ad539 Mon Sep 17 00:00:00 2001 From: Isaac Morales Date: Mon, 5 Aug 2024 14:13:13 +0200 Subject: [PATCH 09/13] Remove --select from bdm-code-generation --- util/makefile-build/bdm-code-generation | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/makefile-build/bdm-code-generation b/util/makefile-build/bdm-code-generation index 1edcf505b..69e5ac0f5 100755 --- a/util/makefile-build/bdm-code-generation +++ b/util/makefile-build/bdm-code-generation @@ -58,7 +58,7 @@ CXX_INCLUDES=$(${BDM_CONFIG} --cxxincludes | sed 's|-isystem |-I|g') CXX_DEFINES=$(${BDM_CONFIG} --cxxdefines) -rootcling -reflex -o ${DICT} ${HEADERS} --noIncludePaths -inlineInputHeader --select=${SELECTIONFILE} ${CXX_DEFINES} ${CXX_INCLUDES} $ADDITIONAL_CXX_FLAGS +rootcling -reflex -f ${DICT} ${HEADERS} --noIncludePaths -inlineInputHeader ${SELECTIONFILE} ${CXX_DEFINES} ${CXX_INCLUDES} $ADDITIONAL_CXX_FLAGS # Generate bdm dictionary and append to DICT BDM_DICT=$(mktemp) From 68f110d4f34dde9638a6d08d24036b7df73e7446 Mon Sep 17 00:00:00 2001 From: Isaac Morales Date: Wed, 7 Aug 2024 18:15:09 +0200 Subject: [PATCH 10/13] Remove trim whitespaces --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index bcd03e659..febd8430e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,7 +6,7 @@ root = true charset = utf-8 end_of_line = lf insert_final_newline = true -trim_trailing_whitespace = true +trim_trailing_whitespace = false indent_style = space indent_size = 2 From 7bed6703da8b2eead9e6270dbe8f814781eaf9b5 Mon Sep 17 00:00:00 2001 From: Isaac Morales Date: Wed, 7 Aug 2024 18:16:09 +0200 Subject: [PATCH 11/13] Changed rootcling calls to be the same --- cmake/FindROOT.cmake | 2 +- util/makefile-build/bdm-code-generation | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/FindROOT.cmake b/cmake/FindROOT.cmake index 9501baa22..431a1571e 100644 --- a/cmake/FindROOT.cmake +++ b/cmake/FindROOT.cmake @@ -196,7 +196,7 @@ function(REFLEX_GENERATE_DICTIONARY dictionary) #set(rootmapopts --rootmap=${rootmapname} --rootmap-lib=${libprefix}${dictionary}Dict) #---Actual command---------------------------------------- add_custom_command(OUTPUT ${gensrcdict} ${rootmapname} ${dictionary}_rdict.pcm - COMMAND ${ROOTCLING_EXECUTABLE} -reflex -f ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} -noIncludePaths -inlineInputHeader + COMMAND ${ROOTCLING_EXECUTABLE} --reflex -f ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} --noIncludePaths --inlineInputHeader ${ARG_OPTIONS} ${includedirs} ${definitions} DEPENDS ${headerfiles} ${selectionfile}) endfunction() diff --git a/util/makefile-build/bdm-code-generation b/util/makefile-build/bdm-code-generation index 69e5ac0f5..09fd49152 100755 --- a/util/makefile-build/bdm-code-generation +++ b/util/makefile-build/bdm-code-generation @@ -58,7 +58,7 @@ CXX_INCLUDES=$(${BDM_CONFIG} --cxxincludes | sed 's|-isystem |-I|g') CXX_DEFINES=$(${BDM_CONFIG} --cxxdefines) -rootcling -reflex -f ${DICT} ${HEADERS} --noIncludePaths -inlineInputHeader ${SELECTIONFILE} ${CXX_DEFINES} ${CXX_INCLUDES} $ADDITIONAL_CXX_FLAGS +rootcling --reflex -f ${DICT} ${HEADERS} ${SELECTIONFILE} --noIncludePaths --inlineInputHeader ${CXX_DEFINES} ${CXX_INCLUDES} $ADDITIONAL_CXX_FLAGS # Generate bdm dictionary and append to DICT BDM_DICT=$(mktemp) From 44c6587bbcd05aaa65eb7c31078d98634c524abc Mon Sep 17 00:00:00 2001 From: Isaac Morales Santana <102816007+imorlxs@users.noreply.github.com> Date: Tue, 20 Aug 2024 10:09:30 +0200 Subject: [PATCH 12/13] Update .editorconfig --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index febd8430e..bcd03e659 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,7 +6,7 @@ root = true charset = utf-8 end_of_line = lf insert_final_newline = true -trim_trailing_whitespace = false +trim_trailing_whitespace = true indent_style = space indent_size = 2 From 12e479f5d4279110b13981e37eff6a59953b1e14 Mon Sep 17 00:00:00 2001 From: Isaac Morales Date: Fri, 23 Aug 2024 11:08:23 +0200 Subject: [PATCH 13/13] Add --v2 flag to show warnings --- cmake/FindROOT.cmake | 2 +- util/makefile-build/bdm-code-generation | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/FindROOT.cmake b/cmake/FindROOT.cmake index 431a1571e..b3f7c2e87 100644 --- a/cmake/FindROOT.cmake +++ b/cmake/FindROOT.cmake @@ -196,7 +196,7 @@ function(REFLEX_GENERATE_DICTIONARY dictionary) #set(rootmapopts --rootmap=${rootmapname} --rootmap-lib=${libprefix}${dictionary}Dict) #---Actual command---------------------------------------- add_custom_command(OUTPUT ${gensrcdict} ${rootmapname} ${dictionary}_rdict.pcm - COMMAND ${ROOTCLING_EXECUTABLE} --reflex -f ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} --noIncludePaths --inlineInputHeader + COMMAND ${ROOTCLING_EXECUTABLE} --reflex --v2 -f ${gensrcdict} ${rootmapopts} ${headerfiles} ${selectionfile} --noIncludePaths --inlineInputHeader ${ARG_OPTIONS} ${includedirs} ${definitions} DEPENDS ${headerfiles} ${selectionfile}) endfunction() diff --git a/util/makefile-build/bdm-code-generation b/util/makefile-build/bdm-code-generation index 09fd49152..cc78053ae 100755 --- a/util/makefile-build/bdm-code-generation +++ b/util/makefile-build/bdm-code-generation @@ -58,7 +58,7 @@ CXX_INCLUDES=$(${BDM_CONFIG} --cxxincludes | sed 's|-isystem |-I|g') CXX_DEFINES=$(${BDM_CONFIG} --cxxdefines) -rootcling --reflex -f ${DICT} ${HEADERS} ${SELECTIONFILE} --noIncludePaths --inlineInputHeader ${CXX_DEFINES} ${CXX_INCLUDES} $ADDITIONAL_CXX_FLAGS +rootcling --reflex --v2 -f ${DICT} ${HEADERS} ${SELECTIONFILE} --noIncludePaths --inlineInputHeader ${CXX_DEFINES} ${CXX_INCLUDES} $ADDITIONAL_CXX_FLAGS # Generate bdm dictionary and append to DICT BDM_DICT=$(mktemp)