Lines Matching refs:hello
593 $ perlcc hello # Compiles into executable 'a.out'
594 $ perlcc -o hello hello.pl # Compiles into executable 'hello'
600 $ perlcc -S -o hello file # Creates a C file, 'file.c',
601 # then compiles it to executable 'hello'
607 $ perlcc -I /foo hello # extra headers (notice the space after -I)
608 $ perlcc -L /foo hello # extra libraries (notice the space after -L)
610 $ perlcc -r hello # compiles 'hello' into 'a.out', runs 'a.out'.
611 $ perlcc -r hello a b c # compiles 'hello' into 'a.out', runs 'a.out'.
614 $ perlcc hello -log c # compiles 'hello' into 'a.out' logs compile