Root trunk on ubuntu 12.04LTS 32 bit

Hi,

I tried to re-install root, as my previous installation which used to work no longer did, and although the compilation appears to run fine,

adriana@adriana:~/root$ make

============================================================
=== ROOT BUILD SUCCESSFUL. ===
=== Run ‘source bin/thisroot.[c]sh’ before starting ROOT ===

adriana@adriana:~/root$ make install

============================================================
=== ROOT BUILD SUCCESSFUL. ===
=== Run ‘source bin/thisroot.[c]sh’ before starting ROOT ===

Everything already installed…

I cannot run any tutorial (or other script):

adriana@adriana:~/root/tutorials$ root hsimple.C


  •                                     *
    
  •    W E L C O M E  to  R O O T       *
    
  •                                     *
    
  • Version 5.99/01 9 May 2012 *
  •                                     *
    
  • You are welcome to visit our Web site *
  •      [root.cern.ch](http://root.cern.ch)            *
    
  •                                     *
    

ROOT 5.99/01 (trunk@48526, Feb 10 2013, 22:25:31 on linux)
cling C/C++ Interpreter: type .? for help.
In file included from input_line_347:1:
/home/adriana/root/tutorials/./rootalias.C:58:4: error: use of undeclared identifier ‘TPaveText’; did you mean ‘kPaveText’?
TPaveText summary = (TPaveText)bench->GetPrimitive(“TPave”);
^~~~~~~~~
kPaveText
/home/adriana/root/include/Buttons.h:31:4: note: ‘kPaveText’ declared here
kPaveText = 13, kPavesText = 14, kEllipse = 15,
^
In file included from input_line_347:1:
/home/adriana/root/tutorials/./rootalias.C:58:15: error: use of undeclared identifier 'summary’
TPaveText summary = (TPaveText)bench->GetPrimitive(“TPave”);
^
/home/adriana/root/tutorials/./rootalias.C:58:26: error: use of undeclared identifier ‘TPaveText’; did you mean ‘kPaveText’?
TPaveText summary = (TPaveText)bench->GetPrimitive(“TPave”);
^~~~~~~~~
kPaveText
/home/adriana/root/include/Buttons.h:31:4: note: ‘kPaveText’ declared here
kPaveText = 13, kPavesText = 14, kEllipse = 15,
^
In file included from input_line_347:1:
/home/adriana/root/tutorials/./rootalias.C:58:36: error: expected expression
TPaveText summary = (TPaveText)bench->GetPrimitive(“TPave”);
^
/home/adriana/root/tutorials/./rootalias.C:59:4: error: use of undeclared identifier ‘TText’; did you mean ‘kText’?
TText *tmacro = summary->GetLineWith(macro);
^~~~~
kText
/home/adriana/root/include/Buttons.h:29:21: note: ‘kText’ declared here
kPad = 7, kText = 8, kEditor = 9,
^
In file included from input_line_347:1:
/home/adriana/root/tutorials/./rootalias.C:59:11: error: use of undeclared identifier ‘tmacro’; did you mean ‘macro’?
TText *tmacro = summary->GetLineWith(macro);
^~~~~~
macro
/home/adriana/root/tutorials/./rootalias.C:54:19: note: ‘macro’ declared here
void bexec2(char *macro)
^
/home/adriana/root/tutorials/./rootalias.C:59:10: error: invalid operands to binary expression (‘int’ and ‘char *’)
TText *tmacro = summary->GetLineWith(macro);
~~~~~ ^~~~~~~
/home/adriana/root/tutorials/./rootalias.C:59:20: error: use of undeclared identifier 'summary’
TText *tmacro = summary->GetLineWith(macro);
^
/home/adriana/root/tutorials/./rootalias.C:60:8: error: use of undeclared identifier ‘tmacro’; did you mean ‘macro’?
if (tmacro) tmacro->SetTextColor(4);
^~~~~~
macro
/home/adriana/root/tutorials/./rootalias.C:54:19: note: ‘macro’ declared here
void bexec2(char *macro)
^
/home/adriana/root/tutorials/./rootalias.C:60:16: error: use of undeclared identifier ‘tmacro’; did you mean ‘macro’?
if (tmacro) tmacro->SetTextColor(4);
^~~~~~
macro
/home/adriana/root/tutorials/./rootalias.C:54:19: note: ‘macro’ declared here
void bexec2(char *macro)
^
/home/adriana/root/tutorials/./rootalias.C:60:22: error: member reference base type ‘char’ is not a structure or union
if (tmacro) tmacro->SetTextColor(4);
~~~~~~^ ~~~~~~~~~~~~
/home/adriana/root/tutorials/./rootalias.C:61:9: error: member access into incomplete type 'TCanvas’
bench->Modified(); bench->Update();
^
/home/adriana/root/include/TCanvasImp.h:29:7: note: forward declaration of 'TCanvas’
class TCanvas;
^
In file included from input_line_347:1:
/home/adriana/root/tutorials/./rootalias.C:61:28: error: member access into incomplete type 'TCanvas’
bench->Modified(); bench->Update();
^
/home/adriana/root/include/TCanvasImp.h:29:7: note: forward declaration of 'TCanvas’
class TCanvas;
^
In file included from input_line_347:1:
/home/adriana/root/tutorials/./rootalias.C:65:4: error: use of undeclared identifier ‘TPaveText’; did you mean ‘kPaveText’?
TPaveText summary2 = (TPaveText)bench->GetPrimitive(“TPave”);
^~~~~~~~~
kPaveText
/home/adriana/root/include/Buttons.h:31:4: note: ‘kPaveText’ declared here
kPaveText = 13, kPavesText = 14, kEllipse = 15,
^
In file included from input_line_347:1:
/home/adriana/root/tutorials/./rootalias.C:65:15: error: use of undeclared identifier 'summary2’
TPaveText summary2 = (TPaveText)bench->GetPrimitive(“TPave”);
^
/home/adriana/root/tutorials/./rootalias.C:65:27: error: use of undeclared identifier ‘TPaveText’; did you mean ‘kPaveText’?
TPaveText summary2 = (TPaveText)bench->GetPrimitive(“TPave”);
^~~~~~~~~
kPaveText
/home/adriana/root/include/Buttons.h:31:4: note: ‘kPaveText’ declared here
kPaveText = 13, kPavesText = 14, kEllipse = 15,
^
In file included from input_line_347:1:
/home/adriana/root/tutorials/./rootalias.C:65:37: error: expected expression
TPaveText summary2 = (TPaveText)bench->GetPrimitive(“TPave”);
^
/home/adriana/root/tutorials/./rootalias.C:66:4: error: use of undeclared identifier ‘TText’; did you mean ‘kText’?
TText *tmacro2 = summary2->GetLineWith(macro);
^~~~~
kText
/home/adriana/root/include/Buttons.h:29:21: note: ‘kText’ declared here
kPad = 7, kText = 8, kEditor = 9,
^
In file included from input_line_347:1:
/home/adriana/root/tutorials/./rootalias.C:66:11: error: use of undeclared identifier ‘tmacro2’; did you mean ‘macro’?
TText *tmacro2 = summary2->GetLineWith(macro);
^~~~~~~
macro
/home/adriana/root/tutorials/./rootalias.C:54:19: note: ‘macro’ declared here
void bexec2(char *macro)
^
fatal error: too many errors emitted, stopping now [-ferror-limit=]

Welcome to the ROOT tutorials

Type “.x demos.C” to get a toolbar from which to execute the demos

Type “.x demoshelp.C” to see the help window

==> Many tutorials use the file hsimple.root produced by hsimple.C
==> It is recommended to execute hsimple.C before any other script

root [0]
Processing hsimple.C…
Warning in TCanvas::ResizePad: c1 width changed from 0 to 10

Warning in TCanvas::ResizePad: c1 height changed from 0 to 10

*** stack smashing detected ***: /home/adriana/root/bin/root.exe terminated
======= Backtrace: =========
/lib/i386-linux-gnu/libc.so.6(__fortify_fail+0x45)[0xb5c0c045]
/lib/i386-linux-gnu/libc.so.6(+0x103ffa)[0xb5c0bffa]
/home/adriana/root/lib/libCore.so(+0x15828d4)[0xb73718d4]
/home/adriana/root/lib/libCore.so(+0x10b4fa8)[0xb6ea3fa8]
[0xbfd11818]
======= Memory map: ========
08048000-0804a000 r-xp 00000000 08:05 15215024 /home/adriana/root/bin/root.exe
0804a000-0804b000 r–p 00001000 08:05 15215024 /home/adriana/root/bin/root.exe
0804b000-0804c000 rw-p 00002000 08:05 15215024 /home/adriana/root/bin/root.exe
09945000-0be54000 rw-p 00000000 00:00 0 [heap]
b4323000-b43a4000 rw-p 00000000 00:00 0
b43a4000-b46ba000 r-xp 00000000 08:05 15215058 /home/adriana/root/lib/libGui.so
b46ba000-b46e0000 r–p 00315000 08:05 15215058 /home/adriana/root/lib/libGui.so
b46e0000-b46e4000 rw-p 0033b000 08:05 15215058 /home/adriana/root/lib/libGui.so
b46e4000-b476f000 rw-p 00000000 00:00 0
b476f000-b4774000 r–p 00000000 08:05 12724827 /usr/include/X11/X.h
b4774000-b478d000 r–p 00000000 08:05 12724894 /usr/include/X11/Xlib.h
b478d000-b4793000 r–p 00000000 08:05 15214288 /home/adriana/root/include/TGX11.h
b4793000-b4798000 r-xp 00000000 08:05 12718537 /usr/lib/i386-linux-gnu/libXdmcp.so.6.0.0
b4798000-b4799000 r–p 00004000 08:05 12718537 /usr/lib/i386-linux-gnu/libXdmcp.so.6.0.0
b4799000-b479a000 rw-p 00005000 08:05 12718537 /usr/lib/i386-linux-gnu/libXdmcp.so.6.0.0
b479a000-b479c000 r-xp 00000000 08:05 12718526 /usr/lib/i386-linux-gnu/libXau.so.6.0.0
b479c000-b479d000 r–p 00001000 08:05 12718526 /usr/lib/i386-linux-gnu/libXau.so.6.0.0
b479d000-b479e000 rw-p 00002000 08:05 12718526 /usr/lib/i386-linux-gnu/libXau.so.6.0.0
b479e000-b47bd000 r-xp 00000000 08:05 12715410 /usr/lib/i386-linux-gnu/libxcb.so.1.1.0
b47bd000-b47be000 r–p 0001f000 08:05 12715410 /usr/lib/i386-linux-gnu/libxcb.so.1.1.0
b47be000-b47bf000 rw-p 00020000 08:05 12715410 /usr/lib/i386-linux-gnu/libxcb.so.1.1.0
b47bf000-b48ef000 r-xp 00000000 08:05 12718524 /usr/lib/i386-linux-gnu/libX11.so.6.3.0
b48ef000-b48f0000 r–p 0012f000 08:05 12718524 /usr/lib/i386-linux-gnu/libX11.so.6.3.0
b48f0000-b48f2000 rw-p 00130000 08:05 12718524 /usr/lib/i386-linux-gnu/libX11.so.6.3.0
b48f2000-b48f3000 rw-p 00000000 00:00 0
b48f3000-b4903000 r-xp 00000000 08:05 12718539 /usr/lib/i386-linux-gnu/libXext.so.6.4.0
b4903000-b4904000 r–p 0000f000 08:05 12718539 /usr/lib/i386-linux-gnu/libXext.so.6.4.0
b4904000-b4905000 rw-p 00010000 08:05 12718539 /usr/lib/i386-linux-gnu/libXext.so.6.4.0
b4905000-b4915000 r-xp 00000000 08:05 12718555 /usr/lib/i386-linux-gnu/libXpm.so.4.11.0
b4915000-b4916000 r–p 0000f000 08:05 12718555 /usr/lib/i386-linux-gnu/libXpm.so.4.11.0
b4916000-b4917000 rw-p 00010000 08:05 12718555 /usr/lib/i386-linux-gnu/libXpm.so.4.11.0
b4917000-b493c000 r-xp 00000000 08:05 15215020 /home/adriana/root/lib/libGX11.so
b493c000-b493d000 r–p 00024000 08:05 15215020 /home/adriana/root/lib/libGX11.so
b493d000-b493e000 rw-p 00025000 08:05 15215020 /home/adriana/root/lib/libGX11.so
b493e000-b494e000 rw-p 00000000 00:00 0
b494e000-b49b9000 r-xp 00000000 08:05 15215059 /home/adriana/root/lib/libHistPainter.so
b49b9000-b49ba000 r–p 0006b000 08:05 15215059 /home/adriana/root/lib/libHistPainter.so
b49ba000-b49bb000 rw-p 0006c000 08:05 15215059 /home/adriana/root/lib/libHistPainter.so
b49bb000-b49bd000 rw-p 00000000 00:00 0
b49bd000-b4a52000 r-xp 00000000 08:05 12719205 /usr/lib/i386-linux-gnu/libfreetype.so.6.8.0
b4a52000-b4a56000 r–p 00094000 08:05 12719205 /usr/lib/i386-linux-gnu/libfreetype.so.6.8.0
b4a56000-b4a57000 rw-p 00098000 08:05 12719205 /usr/lib/i386-linux-gnu/libfreetype.so.6.8.0
b4a57000-b4b53000 r-xp 00000000 08:05 15215043 /home/adriana/root/lib/libGraf.so
b4b53000-b4b59000 r–p 000fb000 08:05 15215043 /home/adriana/root/lib/libGraf.so
b4b59000-b4b5c000 rw-p 00101000 08:05 15215043 /home/adriana/root/lib/libGraf.so
b4b5c000-b4b64000 rw-p 00000000 00:00 0
b4b64000-b4bd6000 r-xp 00000000 08:05 15215048 /home/adriana/root/lib/libGpad.so
b4bd6000-b4bd7000 —p 00072000 08:05 15215048 /home/adriana/root/lib/libGpad.so
b4bd7000-b4bdb000 r–p 00072000 08:05 15215048 /home/adriana/root/lib/libGpad.so
b4bdb000-b4bdc000 rw-p 00076000 08:05 15215048 /home/adriana/root/lib/libGpad.so
b4bdc000-b4bde000 rw-p 00000000 00:00 0
b4bde000-b4c2d000 r-xp 00000000 08:05 6426397 /lib/i386-linux-gnu/libssl.so.1.0.0
b4c2d000-b4c2e000 —p 0004f000 08:05 6426397 /lib/i386-linux-gnu/libssl.so.1.0.0
b4c2e000-b4c30000 r–p 0004f000 08:05 6426397 /lib/i386-linux-gnu/libssl.so.1.0.0
b4c30000-b4c34000 rw-p 00051000 08:05 6426397 /lib/i386-linux-gnu/libssl.so.1.0.0
b4c34000-b4dc6000 r-xp 00000000 08:05 6426394 /lib/i386-linux-gnu/libcrypto.so.1.0.0
b4dc6000-b4dd5000 r–p 00192000 08:05 6426394 /lib/i386-linux-gnu/libcrypto.so.1.0.0
b4dd5000-b4ddc000 rw-p 001a1000 08:05 6426394 /lib/i386-linux-gnu/libcrypto.so.1.0.0
b4ddc000-b4ddf000 rw-p 00000000 00:00 0
b4de5000-b4deb000 r–p 00000000 08:05 15213894 /home/adriana/root/include/TGListTree.h
b4deb000-b4df0000 r–p 00000000 08:05 15213883 /home/adriana/root/include/TGListBox.h
b4df0000-b4df5000 r–p 00000000 08:05 15213869 /home/adriana/root/include/TGMenu.h
b4df5000-b4ea1000 r-xp 00000000 08:05 15215030 /home/adriana/root/lib/libNet.so
b4ea1000-b4ea7000 r–p 000ac000 08:05 15215030 /home/adriana/root/lib/libNet.so
b4ea7000-b4ea8000 rw-p 000b2000 08:05 15215030 /home/adriana/root/lib/libNet.so
b4ea8000-b4eaf000 rw-p 00000000 00:00 0
b4eaf000-b4fb6000 r-xp 00000000 08:05 15215036 /home/adriana/root/lib/libTree.so
b4fb6000-b4fbd000 r–p 00106000 08:05 15215036 /home/adriana/root/lib/libTree.so
b4fbd000-b4fbf000 rw-p 0010d000 08:05 15215036 /home/adriana/root/lib/libTree.so
b4fbf000-b4fc1000 rw-p 00000000 00:00 0
b4fc1000-b4fc6000 r–p 00000000 08:05 15213686 /home/adriana/root/include/TH3.h
b4fc6000-b4fcb000 r–p 00000000 08:05 15213652 /home/adriana/root/include/TF1.h
b4fcb000-b4fd0000 r–p 00000000 08:05 15213632 /home/adriana/root/include/TMatrixTSparse.h
b4fd0000-b4fd5000 r–p 00000000 08:05 15213642 /home/adriana/root/include/TVectorT.h
b4fd5000-b4fde000 r–p 00000000 08:05 15213635 /home/adriana/root/include/TMatrixTUtils.h
b4fde000-b4fe4000 r–p 00000000 08:05 15213630 /home/adriana/root/include/TMatrixT.h
b4fe4000-b5119000 r-xp 00000000 08:05 15215029 /home/adriana/root/lib/libMatrix.so
b5119000-b511d000 r–p 00135000 08:05 15215029 /home/adriana/root/lib/libMatrix.so
b511d000-b511f000 rw-p 00139000 08:05 15215029 /home/adriana/root/lib/libMatrix.so
b511f000-b5121000 rw-p 00000000 00:00 0
b5121000-b53bb000 r-xp 00000000 08:05 15215033 /home/adriana/root/lib/libHist.so
b53bb000-b53bc000 —p 0029a000 08:05 15215033 /home/adriana/root/lib/libHist.so
b53bc000-b53cf000 r–p 0029a000 08:05 15215033 /home/adriana/root/lib/libHist.so
b53cf000-b53d1000 rw-p 002ad000 08:05 15215033 /home/adriana/root/lib/libHist.so
b53d1000-b53d7000 rw-p 00000000 00:00 0
b53d7000-b53dc000 r–p 00000000 08:05 15213459 /home/adriana/root/include/TStreamerInfo.h
b53dc000-b53e1000 r–p 00000000 08:05 15213450 /home/adriana/root/include/TGenCollectionProxy.h
b53e1000-b53e8000 r–p 00000000 08:05 15213437 /home/adriana/root/include/TBufferFile.h
b53e8000-b53ed000 r–p 00000000 08:05 12724207 /usr/include/c++/4.6/bits/stl_queue.h
b53ed000-b53f5000 r–p 00000000 08:05 12724125 /usr/include/c++/4.6/bits/deque.tcc
b53f5000-b5406000 r–p 00000000 08:05 12724138 /usr/include/c++/4.6/bits/stl_deque.h
b5406000-b5427000 r-xp 00000000 08:05 15215015 /home/adriana/root/lib/libThread.so
b5427000-b5429000 r–p 00021000 08:05 15215015 /home/adriana/root/lib/libThread.so
b5429000-b542a000 rw-p 00023000 08:05 15215015 /home/adriana/root/lib/libThread.so
b542a000-b542b000 rw-p 00000000 00:00 0
b542b000-b55ad000 r-xp 00000000 08:05 15215028 /home/adriana/root/lib/libRIO.so
b55ad000-b55b1000 r–p 00181000 08:05 15215028 /home/adriana/root/lib/libRIO.so
b55b1000-b55b3000 rw-p 00185000 08:05 15215028 /home/adriana/root/lib/libRIO.so
b55b3000-b55b4000 rw-p 00000000 00:00 0
b55b4000-b55bb000 r–p 00000000 08:05 15213813 /home/adriana/root/include/TPad.h
b55bb000-b55c3000 r–p 00000000 08:05 15213672 /home/adriana/root/include/TH1.h
b55c3000-b55c8000 r–p 00000000 08:05 15213679 /home/adriana/root/include/TH2.h
b55c8000-b55d0000 r–p 00000000 08:05 15213757 /home/adriana/root/include/TTree.h
b55d0000-b55d5000 r–p 00000000 08:05 15213445 /home/adriana/root/include/TFile.h
b55d5000-b55da000 r–p 00000000 08:05 15213544 /home/adriana/root/include/Fit/Fitter.h
b55da000-b55df000 r–p 00000000 08:05 15213534 /home/adriana/root/include/Fit/BinData.h
b55df000-b55e4000 r–p 00000000 08:05 15213519 /home/adriana/root/include/Math/QuantFuncMathCore.h
b55e4000-b5665000 rw-p 00000000 00:00 0
b5665000-b575d000 r-xp 00000000 08:05 15215016 /home/adriana/root/lib/libMathCore.so
b575d000-b5761000 r–p 000f7000 08:05 15215016 /home/adriana/root/lib/libMathCore.so
b5761000-b5763000 rw-p 000fb000 08:05 15215016 /home/adriana/root/lib/libMathCore.so
b5763000-b5768000 rw-p 00000000 00:00 0
b5768000-b5775000 r–p 00000000 08:05 12724146 /usr/include/c++/4.6/bits/stl_list.h
b5775000-b577a000 r–p 00000000 08:05 15213409 /home/adriana/root/include/TStreamerElement.h
b577d000-b5782000 r–p 00000000 08:05 15213865 /home/adriana/root/include/TGButton.h
b5782000-b578a000 r–p 00000000 08:05 15213859 /home/adriana/root/include/TGFrame.h
b578a000-b57b5000 r–p 00000000 08:05 12724828 /usr/include/X11/keysymdef.h
b57b5000-b57bb000 r–p 00000000 08:05 12724900 /usr/include/X11/Xutil.h
b57bb000-b57c0000 r–p 00000000 08:05 15213330 /home/adriana/root/include/TVirtualX.h
b57c0000-b57c5000 r–p 00000000 08:05 15213126 /home/adriana/root/include/GLConstants.h
b57c5000-b57ca000 r–p 00000000 08:05 15213128 /home/adriana/root/include/GuiTypes.h
b57ca000-b57d1000 r–p 00000000 08:05 15213304 /home/adriana/root/include/TStyle.h
b57d1000-b57d6000 r–p 00000000 08:05 15213254 /home/adriana/root/include/TROOT.h
b57d6000-b57dd000 r–p 00000000 08:05 15213308 /home/adriana/root/include/TSystem.h
b57dd000-b57e5000 r–p 00000000 08:05 12724199 /usr/include/c++/4.6/bits/stl_multimap.h
b57e5000-b57ee000 r–p 00000000 08:05 12724171 /usr/include/c++/4.6/bits/stl_map.h
b57ee000-b57fa000 r–p 00000000 08:05 12724143 /usr/include/c++/4.6/bits/stl_tree.h
b57fa000-b5800000 r–p 00000000 08:05 15213363 /home/adriana/root/include/TClass.h
b5800000-b5808000 r–p 00000000 08:05 12724115 /usr/include/c++/4.6/bits/istream.tcc
b5808000-b5810000 r–p 00000000 08:05 12724091 /usr/include/c++/4.6/istream
b5810000-b581a000 r–p 00000000 08:05 12724114 /usr/include/c++/4.6/bits/locale_facets.tcc
b581a000-b5831000 r–p 00000000 08:05 12724198 /usr/include/c++/4.6/bits/locale_facets.h
b5834000-b583a000 r–p 00000000 08:05 15213517 /home/adriana/root/include/Math/ProbFuncMathCore.h
b583a000-b583f000 r–p 00000000 08:05 15213496 /home/adriana/root/include/Math/Integrator.h
b583f000-b5844000 r–p 00000000 08:05 15213506 /home/adriana/root/include/Math/Minimizer.h
b5844000-b584a000 r–p 00000000 08:05 15213489 /home/adriana/root/include/Math/Functor.h
b584a000-b584f000 r–p 00000000 08:05 12724283 /usr/include/c++/4.6/sstream
b584f000-b5860000 r–p 00000000 08:05 12724632 /usr/include/c++/4.6/functional
b5860000-b586f000 r–p 00000000 08:05 15213530 /home/adriana/root/include/Math/KDTree.icc
b586f000-b5874000 r–p 00000000 08:05 15213504 /home/adriana/root/include/Math/KDTree.h
b5874000-b587b000 r–p 00000000 08:05 12724627 /usr/include/c++/4.6/streambuf
b587b000-b5880000 r–p 00000000 08:05 12724685 /usr/include/c++/4.6/ostream
b5880000-b5886000 r–p 00000000 08:05 15213210 /home/adriana/root/include/TBuffer.h
b5886000-b588c000 r–p 00000000 08:05 12724196 /usr/include/c++/4.6/bits/locale_classes.h
b588c000-b5893000 r–p 00000000 08:05 12724124 /usr/include/c++/4.6/bits/ios_base.h
b5893000-b589d000 r–p 00000000 08:05 12724226 /usr/include/c++/4.6/cmath
b589d000-b58ac000 r–p 00000000 08:05 12724281 /usr/include/c++/4.6/limits
b58ac000-b58b1000 r–p 00000000 08:05 12724147 /usr/include/c++/4.6/bits/stl_heap.h
b58b1000-b58b7000 r–p 00000000 08:05 12724174 /usr/include/c++/4.6/bits/algorithmfwd.h
b58b8000-b58bd000 r–p 00000000 08:05 15213367 /home/adriana/root/include/TCling.h
b58bd000-b58c3000 r–p 00000000 08:05 15213346 /home/adriana/root/include/TCollectionProxyInfo.h
b58c3000-b58cb000 r–p 00000000 08:05 12724179 /usr/include/c++/4.6/bits/fstream.tcc
b58cb000-b58d0000 r–p 00000000 08:05 12724123 /usr/include/c++/4.6/bits/codecvt.h
b58d0000-b58d8000 r–p 00000000 08:05 12724686 /usr/include/c++/4.6/fstream
b58d8000-b58e1000 r–p 00000000 08:05 12728822 /usr/include/stdlib.h
b58e1000-b5916000 r–p 00000000 08:05 12724186 /usr/include/c++/4.6/bits/stl_algo.h
b5916000-b591f000 r–p 00000000 08:05 15213467 /home/adriana/root/include/TMath.h
b591f000-b5927000 r–p 00000000 08:05 15213258 /home/adriana/root/include/TString.h
b5927000-b5931000 r–p 00000000 08:05 12724156 /usr/include/c++/4.6/bits/basic_string.tcc
b5931000-b593b000 r–p 00000000 08:05 12728818 /usr/include/pthread.h
b593b000-b5941000 r–p 00000000 08:05 12724273 /usr/include/c++/4.6/i686-linux-gnu/bits/gthr-default.h
b5941000-b595c000 r–p 00000000 08:05 12724169 /usr/include/c++/4.6/bits/basic_string.h
b595c000-b5962000 r–p 00000000 08:05 12724158 /usr/include/c++/4.6/bits/stl_function.h
b5962000-b5967000 r–p 00000000 08:05 12724204 /usr/include/c++/4.6/bits/char_traits.h
b5967000-b596d000 r–p 00000000 08:05 12724157 /usr/include/c++/4.6/bits/vector.tcc
b596d000-b5974000 r–p 00000000 08:05 12724144 /usr/include/c++/4.6/bits/stl_bvector.h
b5974000-b5980000 r–p 00000000 08:05 12724166 /usr/include/c++/4.6/bits/stl_vector.h
b5980000-b5985000 r–p 00000000 08:05 12724137 /usr/include/c++/4.6/bits/stl_uninitialized.h
b5985000-b598e000 r–p 00000000 08:05 12724161 /usr/include/c++/4.6/bits/stl_iterator.h
b598e000-b5999000 r–p 00000000 08:05 12724205 /usr/include/c++/4.6/bits/stl_algobase.h
b5999000-b599f000 r–p 00000000 08:05 12728617 /usr/include/i386-linux-gnu/bits/confname.h
b599f000-b59aa000 r–p 00000000 08:05 12728745 /usr/include/unistd.h
b59aa000-b59b0000 r–p 00000000 08:05 12728743 /usr/include/string.h
b59b0000-b59b8000 r–p 00000000 08:05 12728821 /usr/include/wchar.h
b59b8000-b59bd000 r–p 00000000 08:05 12728760 /usr/include/libio.h
b59bd000-b59c5000 r–p 00000000 08:05 12728855 /usr/include/stdio.h
b59c5000-b59d1000 r–p 00000000 08:05 12724267 /usr/include/c++/4.6/i686-linux-gnu/bits/c++config.hadriana@adriana:~/root/tutorials$
adriana@adriana:~/root/tutorials$

I would be very grateful for any suggestions in how to fix this.

Thank you,

Cristian

Hi,

I am no ROOT developer, but why would you think it would be a good idea to work with the trunk version? I would expect a lot of breaking changes to happen there due to the CINT->cling transistion. If you want a “bleeding edge” version which can be expected to be somehow useable use the v5-34-00-patches branch. If you don’t know how to get that version just download a release (http://root.cern.ch/drupal/content/downloading-root).

Btw, I couldn’t even reproduce your problem with a build of the same version of the trunk (or the version the banner was claiming it was).

Cheers,

Benjamin

Hi,

Thank you for your reply. I have also tried the 5.34-paches installation before posting this question yesterday, with no improvements.

Anyway, this is happening on my home PC. At work I have the same Ubuntu installation and there my root installation works fine. I will check what version of ROOT I have over there and try that one on my home PC…

However I was hoping someone my spot something in the error messages I got at the moment.

Cristian

I’m running on arch linux, and I also started getting the “undeclared identifier” messages after recompiling the trunk last week. It looks like the include path must be messed up, but I haven’t had a chance to look into it, so I just fell back to my latest non-cling version for now.

I added the rootsys include path explicitly in the rootrc file, and everything is now working again, i.e.,

ACLiC.IncludePaths: -I$(ROOTSYS)/include -I$(HOME)/analysis/omega

edit: My first statement was too strong. The undeclared identifier errors were resolved, but there are still other issues beyond those errors. Sorry for any false hope.

Hi,

I have modified two files:

$ROOTSYS/cmake/scripts/rootrc.in and $ROOTSYS/config/rootrc.in to add the include directory, but it did not help. Is it a different file I have to modify?

Thank you,

Cristian

Hello again,

Anyway, I have hust installed ROOT 5.33.02b, and it works fine :smiley: , so I will stay with this version.

Best regards,

Cristian

[quote=“cbungau”]$ROOTSYS/cmake/scripts/rootrc.in and $ROOTSYS/config/rootrc.in to add the include directory, but it did not help. Is it a different file I have to modify?
[/quote]

If you haven’t already, it’s probably best to create a .rootrc file in your home directory, and just add lines that you want to be different than the default as defined in $ROOTSYS/etc/system.rootrc (if I recall the location correctly; check the user guide to be sure on that).

Aside from that, here was my “solution”: Check the revision number of the last successfully tested nightly build by going to

That did it for me. Let me know if that works for you.