Skip to content
Snippets Groups Projects
  1. Apr 06, 2020
  2. Jul 25, 2019
  3. Jul 16, 2019
  4. Jul 01, 2019
  5. Apr 12, 2019
  6. Oct 03, 2018
  7. Oct 01, 2018
  8. Sep 30, 2018
  9. Sep 28, 2018
  10. Mar 27, 2018
  11. Sep 04, 2017
  12. Aug 30, 2017
  13. Jul 28, 2017
    • Raphael Isemann's avatar
      Use ROOT_STANDARD_LIBRARY_PACKAGE where possible [NFC] · ac0de75b
      Raphael Isemann authored
      This refactors the CMake build files to no longer manually call
      the CMake functions for generating and linking the dicionairies.
      One reason is to reduce boilerplate, the other is that it is now
      no longer possible to have naming mismatches between the dictionary
      generation arguments and linking function arguments which was causing
      the race conditions we had in our build system.
      
      This also now follows more strictly the separation between dependencies
      like Math, Tree and Core and pure linking flags to external libraries.
      ac0de75b
  14. Jul 12, 2017
    • Raphael Isemann's avatar
      Fixed dependencies between rootcling invocations and linking. · 82ecb5f0
      Raphael Isemann authored
      The naming of the library in the two function calls ROOT_GENERATE_DICTIONARY
      and ROOT_LINKER_LIBRARY was often not matching. This causes that
      ROOT_LINKER_LIBRARY couldn't correctly set its dependencies to the output
      file of ROOT_GENERATE_DICTIONARY and therefore causes race conditions in
      the build system.
      
      Note: We're attached all dependencies to a custom target, and
      NOT to the output files generated by rootcling. This should mitigate
      the race conditions we experience when multiple targets in different
      Make jobs request the same output file as a dependency and then
      suffer from this Make problem that is described here:
      https://cmake.org/Bug/view.php?id=10082
      
      This patch also adds a (commented out) piece of code that can print
      warnings if we don't have a fitting G__*.cxx file for a
      ROOT_LINKER_LIBRARY call. This is sometimes intended, so I didn't
      enable this warning by default. We should enable this code
      by default in the future once we have a way to express if we
      intentionally don't provide the G__*.cxx file when calling
      ROOT_LINKER_LIBRARY.
      82ecb5f0
    • Raphael Isemann's avatar
      Add missing dependencies to ROOT_GENERATE_DICTIONARY · 8a646b53
      Raphael Isemann authored
      ROOT_GENERATE_DICTIONARY allows to specify dependencies, but we currently
      don't actually specify those. As we need this for getting the module
      dependencies right (as we can't build missing modules on demand), we should
      add those dependencies here. Then those dependencies propagate to the
      rootcling invocation which will in the future also generate the C++ module
      for the selected dictionary.
      8a646b53
  15. Jun 06, 2017
    • Vassil Vassilev's avatar
      Do not confuse clang-format. · 68a8a335
      Vassil Vassilev authored
      ClassImp is a macro defined in Rtypes.h. It can be written without trailing
      semicolon. However, clang-format is based on lexing and it doesn't know at
      all about preprocessors and how to expand macros. When visiting ClassImp(X)
      it thinks this is not a completed entity (as it doesn't expand macros) and
      considers the next line as continuation of the previous.
      
      Inserting a semicolon fixes the issue and makes formatting with clang-format
      in the ROOT codebase less tricky.
      68a8a335
  16. Dec 17, 2016
  17. Dec 14, 2016
    • Vassil Vassilev's avatar
      Move each header in a submodule. · 8d6b3e8d
      Vassil Vassilev authored
      This is the recommended way of using the modules feature and should pave our way
      of enabling -fmodules-local-submodules-visibility mode.
      8d6b3e8d
    • Vassil Vassilev's avatar
      [cmake][make] Automatically generate bug chunk of the modulemap. · ca144dfa
      Vassil Vassilev authored
      Our two build systems can generate almost entirely a modulemap file laying out
      one module per library. Due to some non-modular implementation in ROOT's core we
      still need to treat some header files specially.
      
      This patch appends modular header files to the modulemap while skipping the
      predefined ones. Configure-make relates all headers that are installed in
      $ROOTSYS/include to their library whereas relates only headers which are part of
      library's dictionary.
      ca144dfa
  18. Aug 26, 2016
  19. Dec 02, 2015
  20. Dec 01, 2015
  21. Aug 27, 2015
  22. Aug 23, 2015
  23. Jun 26, 2015
  24. Feb 23, 2015
  25. Aug 05, 2014
    • Philippe Canal's avatar
      Remove trailing spaces · a6bc8d71
      Philippe Canal authored
      a6bc8d71
    • Philippe Canal's avatar
      remove <TAB>'s. · ef2f6464
      Philippe Canal authored
      Conflicts:
      	bindings/pyroot/src/MethodProxy.cxx
      	cmake/modules/RootConfiguration.cmake
      	etc/http/files/main.htm
      	etc/http/files/single.htm
      	geom/geompainter/src/TGeoChecker.cxx
      	graf2d/mathtext/inc/mathtext.h
      	graf2d/mathtext/src/fontembed.cxx
      	graf2d/mathtext/src/fontembedps.cxx
      	graf2d/qt/inc/TQtCanvasPainter.h
      	gui/qtgsi/src/TQRootCanvas.cxx
      	hist/hist/src/TBackCompFitter.cxx
      	hist/hist/src/TEfficiency.cxx
      	hist/hist/src/TFractionFitter.cxx
      	hist/hist/src/TGraphAsymmErrors.cxx
      	hist/hist/src/TH2.cxx
      	hist/hist/src/TH3.cxx
      	hist/hist/src/TMultiDimFit.cxx
      	hist/hist/src/TProfile.cxx
      	hist/hist/src/TProfile2D.cxx
      	hist/hist/src/TUnfoldBinning.cxx
      	html/src/TDocParser.cxx
      	math/foam/src/TFoam.cxx
      	math/genvector/inc/Math/VectorUtil_Cint.h
      	math/minuit2/inc/Minuit2/FumiliMaximumLikelihoodFCN.h
      	math/minuit2/inc/Minuit2/FumiliStandardChi2FCN.h
      	math/minuit2/inc/Minuit2/FumiliStandardMaximumLikelihoodFCN.h
      	math/minuit2/inc/Minuit2/StackAllocator.h
      	math/minuit2/src/TChi2ExtendedFCN.cxx
      	math/minuit2/src/TChi2FCN.cxx
      	math/minuit2/src/TFitterMinuit.cxx
      	math/minuit2/src/TFumiliFCN.cxx
      	misc/table/src/TTableDescriptor.cxx
      	net/auth/src/rsaaux.cxx
      	test/QpRandomDriver.cxx
      	test/ios/RootBrowser/Src/Browser/Controllers/FileCollectionViewController.mm
      	test/ios/RootBrowser/Src/Browser/Controllers/FileContentViewController.mm
      	test/ios/RootBrowser/Src/Browser/Controllers/ObjectViewController.mm
      	test/ios/RootBrowser/Src/Browser/Views/PadView.mm
      	test/ios/RootBrowser/Src/CustomUI/RangeSlider.mm
      	test/ios/RootBrowser/Src/ObjectInspector/Controllers/AxisFontInspector.mm
      	test/ios/RootBrowser/Src/ObjectInspector/Controllers/AxisInspector.mm
      	test/ios/RootBrowser/Src/ObjectInspector/Controllers/AxisLabelsInspector.mm
      	test/ios/RootBrowser/Src/ObjectInspector/Controllers/AxisTitleInspector.mm
      	test/ios/RootBrowser/Src/ObjectInspector/Controllers/FilledAreaInspector.mm
      	test/ios/RootBrowser/Src/ObjectInspector/Controllers/H1BinsInspector.mm
      	test/ios/RootBrowser/Src/ObjectInspector/Controllers/H1ErrorsInspector.mm
      	test/ios/RootBrowser/Src/ObjectInspector/Controllers/H1Inspector.mm
      	test/ios/RootBrowser/Src/ObjectInspector/Controllers/InspectorWithNavigation.mm
      	test/ios/RootBrowser/Src/ObjectInspector/Controllers/LineInspector.mm
      	test/ios/RootBrowser/Src/ObjectInspector/Controllers/MarkerInspector.mm
      	test/ios/RootBrowser/Src/ObjectInspector/Controllers/ObjectInspector.mm
      	test/ios/RootBrowser/Src/ObjectInspector/Controllers/PadInspector.mm
      	test/ios/RootBrowser/Src/ObjectInspector/Controllers/PadTicksGridInspector.mm
      	test/ios/Tutorials/PadOptionsController.mm
      	test/ios/Tutorials/PadView.mm
      	test/periodic/NdbMF.cxx
      	test/periodic/NdbMTReacDesc.cxx
      	test/periodic/NdbMTReactionXS.cxx
      	test/periodic/NdbParticleList.cxx
      	test/periodic/XSGui.h
      	test/stressLinear.cxx
      	test/stressRooFit_tests.cxx
      	test/tcollbm.cxx
      	test/vmatrix.cxx
      	tutorials/eve/boxset.C
      	tutorials/geom/geodemo.C
      	tutorials/graphs/splines.C
      	tutorials/hist/th2polyEurope.C
      	tutorials/mc/CompareMasses.C
      	tutorials/memstat/memstat.C
      ef2f6464
  26. Apr 29, 2014
  27. Apr 09, 2014
  28. Feb 11, 2014
  29. Jan 31, 2014
    • Danilo Piparo's avatar
      Fix the CMake build · 880fe6d6
      Danilo Piparo authored
      now the library names in the rootmaps are sane.
      In addition, the creation of the tmva and genvector dicts was
      simplified.
      880fe6d6
  30. Dec 17, 2013
  31. Dec 05, 2013
Loading