LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1345|回复: 1

用CPAN install module,能不能加配置参数

[复制链接]
发表于 2004-3-8 19:49:47 | 显示全部楼层 |阅读模式
比如我用常规的方法下载一个模块,可以用 perl Makefile.pl --some-opt
来配置以后进行编译,在CPAN中怎么实现?
发表于 2004-3-16 20:46:18 | 显示全部楼层
有一个编译perl脚本的命令:
perlcc
具体可以看:
man perlcc
PS:本人英语比较莱,但有什么问题可以来问哦
和GCC的用法相似:

  1.            $ perlcc hello              # Compiles into executable 'a.out'
  2.            $ perlcc -o hello hello.pl  # Compiles into executable 'hello'
  3.                                                                                                 
  4.            $ perlcc -O file            # Compiles using the optimised C backend
  5.            $ perlcc -B file            # Compiles using the bytecode backend
  6.                                                                                                 
  7.            $ perlcc -c file            # Creates a C file, 'file.c'
  8.            $ perlcc -S -o hello file   # Creates a C file, 'file.c',
  9.                                        # then compiles it to executable 'hello'
  10.            $ perlcc -c out.c file      # Creates a C file, 'out.c' from 'file'
  11.                                                                                                 
  12.            $ perlcc -e 'print q//'     # Compiles a one-liner into 'a.out'
  13.            $ perlcc -c -e 'print q//'  # Creates a C file 'a.out.c'
  14.                                                                                                 
  15.            $ perlcc -I /foo hello      # extra headers (notice the space after -I)
  16.            $ perlcc -L /foo hello      # extra libraries (notice the space after -L)
  17.                                                                                                 
  18.            $ perlcc -r hello           # compiles 'hello' into 'a.out', runs 'a.out'.
  19.            $ perlcc -r hello a b c     # compiles 'hello' into 'a.out', runs 'a.out'.
  20.                                        # with arguments 'a b c'
  21.                                                                                                 
  22.            $ perlcc hello -log c       # compiles 'hello' into 'a.out' logs compile
  23.                                        # log into 'c'.
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表