2012-04-04 2 views
0

MacRuby의 최신 버전은 정적 컴파일을 지원합니까?MacRuby는 정적 컴파일을 지원합니까?

사용하려고 시도한 일부 터미널 출력은 다음과 같습니다. macrubyc 명령의 옵션에 표시됩니다. 내가 수집 한 것과

Desktop > macrubyc play_all_podcasts.rb --static -o play_all_podcasts 
/usr/local/bin/macrubyc:100:in `initialize': This version of MacRuby does not support static compilation. (ArgumentError) 
    from /usr/local/bin/macrubyc:490:in `<main>' 
Desktop > macrubyc -v 
MacRuby 0.11 (ruby 1.9.2) [universal-darwin10.0, x86_64] 
Desktop > macrubyc --help 
Usage: macrubyc [options] file... 
    -c        Compile and assemble, but do not link 
    -o <file>      Place the output into <file> 
     --static      Create a standalone static executable 
     --framework <name>   Link standalone static executable with given framework 
     --sdk <path>     Use SDK when compiling standalone static executable 
     --dylib      Create a dynamic library 
     --compatibility_version <VERSION> 
            Compatibility Version for linking 
     --current_version <VERSION> Current Version for linking 
     --install_name <NAME>  Install Name for linking 
    -C        Compile, assemble and link a loadable object file 
    -a, --arch <ARCH>    Compile for specified CPU architecture 
    -V, --verbose     Print every command line executed 
    -v, --version     Display the version 
    -h, --help      Display this information 

답변

0

는 정적 컴파일은 여전히 ​​작업을 진행하고 대부분도 1.0 릴리스에 포함되지 않습니다.

+0

감사합니다. 부끄러운 줄 알지만 내 질문에 대답합니다. –