gibuu is hosted by Hepforge, IPPP Durham
GiBUU

Changes between Version 8 and Version 9 of libRootTuple


Ignore:
Timestamp:
Oct 6, 2021, 5:30:45 PM (4 years ago)
Author:
gallmei
Comment:

adding hint for the -std=c++17 compiler flag

Legend:

Unmodified
Added
Removed
Modified
  • libRootTuple

    v8 v9  
    1515should do all the job.
    1616
     17==== In case of troubles ====
    1718
     19If you get error messages and the compilation fails, please check the output of the command `root-config --cflags`. If you find something like '-std=c++17', then
     20please change line 10 in file
     21`GiBUU/libraries/RootTuple/RootTuple-master/src/CMakeLists.txt`
     22from
     23{{{
     24set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") # [GiBUU]
     25}}}
     26to
     27{{{
     28set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17") # [GiBUU]
     29}}}
     30and do 'make buildRootTuple' again.
    1831
    1932== The manual way ==