Rene Brun
Jose Carlos Gonzalez wrote:
>
> Hi, out there,
>
> I'm running the very last version of ROOT+rootcint for
> AlphaStations, running OSF1 4.0. I cannot run normaly
> rootcint. Even with the test files included in the ROOT
> distribution. The surprising thing is that the previous
> version worked fine for me.
>
> I include several "outputs" from some orders writen in my
> command line. They are separated with a line of %s. By the
> way, the second output is what I get when trying to compile
> the Event example.
>
> Please, help me! ;-)
>
> Thanks.
>
> machine:~/mytest> uname -a
> OSF1 machine.subdomain.domain V4.0 564 alpha
> machine:~/mytest> _
> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
> machine:~/mytest> make
> Generating dictionary ...
>
> cint : C/C++ interpreter
> Copyright(c) : 1991~1996 [hp] Hewlett-Packard-Japan
> Author : Masaharu Goto (gotom@jpn.hp.com)
> Copyright(c) : 1995~1998 Masaharu Goto (MXJ02154@niftyserve.or.jp)
> revision : 5.13.46, Mar 22 1998 by M.Goto
>
> No main() function found in given source file. Interactive interface started.
> 'h' for help, 'q' to quit, '{ statements }' or 'p [expression]' to evaluate
>
> rootcint> .q
> cxx -O -D__osf__ -D__alpha -I/CERN/root/include -c EventCint.cxx
> cxx: Severe: No such file or directory
> ... file is 'EventCint.cxx'
> *** Exit 1
> Stop.
> machine:~/mytest> _
> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
> machine:~/mytest> rootcint -f EventCint.C -c Event.h LinkDef.h
> cint : C/C++ interpreter
> Copyright(c) : 1991~1996 [hp] Hewlett-Packard-Japan
> Author : Masaharu Goto (gotom@jpn.hp.com)
> Copyright(c) : 1995~1998 Masaharu Goto (MXJ02154@niftyserve.or.jp)
> revision : 5.13.46, Mar 22 1998 by M.Goto
>
> No main() function found in given source file. Interactive interface started.
> 'h' for help, 'q' to quit, '{ statements }' or 'p [expression]' to evaluate
>
> rootcint> .q
> cxx -O -D__osf__ -D__alpha -I/CERN/root/include -c EventCint.cxx
> cxx: Severe: No such file or directory
> ... file is 'EventCint.cxx'
> *** Exit 1
> Stop.
> machine:~/mytest> _
> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
> machine:~/mytest> rootcint --help
> Usage: rootcint [options] [sourcefiles|suboptions] [arguments]
> options
> -A : ANSI C++ mode(default)
> -b [line] : set break line
> -c -1: make C++ precompiled interface method files
> -c -2: make C precompiled interface method files
> -d [dumpfile] : dump function call history
> -D [macro] : define macro symbol for #ifdef
> -e : Not ignore extern declarations
> -E : Dump core at error
> -f [file] : set break file
> -F [assignement] : set global variable
> -i : interactively return undefined symbol value
> -I [includepath] : set include file search path
> -K : C mode
> -l [dynamiclinklib] : link dynamic link library
> -n [linkname] : Specify precompiled interface method filename
> -N [DLL_name] : Specify DLL interface method name
> -O [0|1|2] : Loop compiler on(1,2) off(0). Default on(2)
> -p : use preprocessor prior to interpretation
> -q [security] : Set security level(default 0)
> -r : revision and linked function/global info
> -R : display input file at break point
> -- Press return for more -- (input [number] of lines, Cont,Step,More)
> -s : step execution mode
> -S : step execution mode, First stop in main()
> -t : trace execution
> -T : trace from pre-run
> -u [undefout] : listup possible undefined typenames
> -X [readlinedumpfile] : Execute readline dumpfile
> -x 'main() {...}' : Execute argument as source code
> suboptions
> +V : turn on class title comment mode for following source fies
> -V : turn off class title comment mode for following source fies
> +P : turn on preprocessor for following source files
> -P : turn off preprocessor for following source files
> +STUB : stub function header begin
> -STUB : stub function header end
> sourcefiles
> Any valid C/C++ source or header files
> EXAMPLES
> $ cint prog.c main.c
> $ cint -S prog.c main.c
> machine:~/mytest> _