Skip to content
Snippets Groups Projects
  1. May 03, 2013
  2. Apr 25, 2013
  3. Apr 05, 2013
    • Fons Rademakers's avatar
      From Mattias Mellert (#100973): · f0331dcb
      Fons Rademakers authored
      Fixing 2 issues. 
      1. Using 
      
      ruby -rrbconfig -e 'puts RbConfig::CONFIG["ruby_version"]' 
      
      to extract the version of ruby being used is not reliable, and with the
      ruby 2.0 in Fedora 19 it fails (an empty string is returned). A better
      alternative is to use 
      
      ruby -rrbconfig -e 'puts RbConfig::CONFIG["MAJOR"]' 
      ruby -rrbconfig -e 'puts RbConfig::CONFIG["MINOR"]' 
      
      instead. This also works with ruby 1.8 on RHEL 5 and 6. 
      
      2. The RFLOAT_VALUE macro in ruby 2.0 resolves to an inlined function and
      is therefore not a valid lvalue any more, and the address-of operator can
      not be applied to it. The construct &RFLOAT_VALUE(...) is used in the
      rr_parse_void function, which therefore no longer compiles. This function
      is not called anywhere in the code, nor is it part of the modules public
      interface since it is not listed in any installed header. So simply
      removing this function makes the code compile again.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@49089 27541ba8-7e3a-0410-8455-c3a389f83636
      f0331dcb
  4. Apr 04, 2013
  5. Mar 28, 2013
    • Fons Rademakers's avatar
      From Lifeng Sun: · 2f98a6a8
      Fons Rademakers authored
      The attached patchset fixes a bunch of typo in the source:
      0001-succes-success.patch
      0002-preceed-preced.patch
      0003-informations-information.patch
      0004-childs-children.patch
      0005-avaliable-available.patch
      0006-writeable-writable.patch
      0007-comand-command.patch
      0008-unkown-unknown.patch
      0009-wierd-weird.patch
      0010-wheter-whether.patch
      0011-unecessary-unnecessary.patch
      0012-splitted-split.patch
      0013-registerd-registered.patch
      0014-recieve-receive.patch
      0015-processsing-processing.patch
      0016-ouput-output.patch
      0017-mutiple-multiple.patch
      0018-lenght-length.patch
      0019-interupted-interrupted.patch
      0020-independant-independent.patch
      0021-inconsistant-inconsistent.patch
      0022-expresion-expression.patch
      0023-explicitely-explicitly.patch
      0024-enviroment-environment.patch
      0025-deafult-default.patch
      0026-continous-continuous.patch
      0027-completly-completely.patch
      0028-commited-committed.patch
      0029-choosen-chosen.patch
      0030-backgroud-background.patch
      0031-auxilliary-auxiliary.patch
      0032-authentification-authentication.patch
      0033-appropiate-appropriate.patch
      0034-an-other-another.patch
      0035-environement-environment.patch
      0036-targetting-targeting.patch
      0037-suppported-supported.patch
      0038-paramater-parameter.patch
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@48992 27541ba8-7e3a-0410-8455-c3a389f83636
      2f98a6a8
    • Fons Rademakers's avatar
      From Lifeng Sun: · b834931e
      Fons Rademakers authored
      Since ruby-1.9.1 the header files are installed in a sub-directory, i.e.
      "include/ruby-1.9.1/", and CONFIG["includedir"] is no longer the right
      place to find the headers.
      I also fixed the the ruby library dectection on system with multiple
      versions of ruby, but it's only a dirty hack for linux and several other
      unix variants.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@48969 27541ba8-7e3a-0410-8455-c3a389f83636
      b834931e
  6. Mar 07, 2013
  7. Mar 06, 2013
    • Fons Rademakers's avatar
      From Liviu Valsam: · 6316b67f
      Fons Rademakers authored
      I'm working in the CERN openlab team and I've recently managed to get
      ROOT cross-compiled on an Intel Xeon server system for the Intel Xeon Phi
      coprocessor, more specifically the Knights Corner card using Intel's Many
      Integrated Cores architecture.
      
      I will also quickly describe my changes:
      - Currently the officially supported compiler for getting software compiled
        for the Xeon Phi is ICC, so I have included support only for ICC, for now.
        In case there will be good MIC support in mainstream gcc in the future I
        could then add a profile for it as well. I have tested my cross-compilation
        changes using Intel Composer XE 2013 Update 1 (version 13.0.1.117,
        build 20121010).
      - The Knights Corner architecture is internally known as k1om so I've defined
        a new architecture with the name linuxx8664k1omicc, using linuxx8664icc
        as a base and adding the MIC specific bits.
      - The platform I've defined as "linux-k1om".
      - Inside the config/Makefile.linuxx8664k1omicc file I've added a MICFLAGS 
        variable containing the MIC specific compilation flag (that's used in
        other places as well).
      - In the configure script I've added a section for linuxx8664k1om*, disabling
        those pieces that can't be cross-compiled (as in the case of iOS).
      
      The configure step I've performed using the following command: 
      "./configure linuxx8664k1omicc --enable-roofit --enable-minuit2
       --with-thread-libdir=/usr/linux-k1om-4.7/linux-k1om/usr/lib64/
       --enable-builtin-zlib". /usr/linux-k1om-4.7/linux-k1om/usr/lib64/
      contains the MIC specific libraries (including libpthread*) distributed
      together with the MIC software stack. By not using the --with-thread-libdir
      flag pointing to the proper MIC pthread lib location makes the compilation
      fail with the following error:
       #error "No Thread Local Storage (TLS) technology for this platform specified."
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@48833 27541ba8-7e3a-0410-8455-c3a389f83636
      6316b67f
    • Fons Rademakers's avatar
      From Gerri: · c3cb7bfb
      Fons Rademakers authored
      This patch adds support for XrootD 3.3.1 (out today) and higher. It
      disables xrootd if the version is 3.3.0 (missing headers).
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@48830 27541ba8-7e3a-0410-8455-c3a389f83636
      c3cb7bfb
  8. Feb 26, 2013
  9. Feb 25, 2013
  10. Feb 15, 2013
  11. Feb 08, 2013
  12. Jan 10, 2013
  13. Dec 20, 2012
  14. Dec 19, 2012
  15. Dec 10, 2012
  16. Dec 09, 2012
    • Fons Rademakers's avatar
      Here we go: · d2bfd6c7
      Fons Rademakers authored
      - Remove CINT
      - Update configure to not have CINT references
      - Update Makefile to not have CINT references
      - Remove all references to G__BIT_xxxx
      More cleaning in next rounds.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@47939 27541ba8-7e3a-0410-8455-c3a389f83636
      d2bfd6c7
  17. Nov 26, 2012
  18. Oct 23, 2012
  19. Sep 27, 2012
  20. Sep 21, 2012
  21. Sep 19, 2012
  22. Sep 12, 2012
  23. Sep 10, 2012
  24. Sep 07, 2012
  25. Aug 30, 2012
  26. Aug 29, 2012
  27. Aug 15, 2012
Loading