posted by 빠담아빠다 2016. 3. 6. 01:18

2014/11/10 09/59 이전자료


perl compiler PAR PACKER

cpan에 간다.

par packer 검색해서

간단한 파일만 받는다.

PAR-Packer-1.014.tar.gz


tar.gz 풀고

Perl Makefile.PL

make

make test

make install


하고

pp -o a.exe a.pl

해보면

Module/ScanDeps가 필요하단다


cpan에간다

Module scandeps검색


Module-ScanDeps-1.10.tar.gz


받고 tar.gz 푼뒤

Perl Makefile.PL

make

make test

make install


하고

pp -o a.exe a.pl

하면 a.exe 파일이 생긴다.


perl compile

pp -o a.exe a.pl


a.pl이라는 파일을 a.exe로  컴파일 ..





----------------------------------------------------------

방문자 덧글

  1. perler 2014.11.11 10:53  댓글주소 수정/삭제 댓글쓰기

    tar ball 받아서 풀고 할필요없이
    명령행에서 cpan 명령써서
    cpan PAR::Packer
    라고 입력하면 의존성있는 모듈 다 알아서 깔아줍니다.