1

「hello world」を出力する MonoDevelop を使用して、単純な mono 実行可能ファイルを作成しました。AOT の「asmonly」オプションを試してみたかったのです。そう:

[root@localhost Debug]# ls
abc.exe
[root@localhost Debug]# mono --aot=full,static,asmonly abc.exe
Mono Ahead of Time compiler - compiling assembly /home/alon/Projects/abc/abc/bin/Debug/abc.exe
Code: 1538 Info: 50 Ex Info: 114 Class Info: 30 PLT: 5 GOT Info: 105 GOT Info Offsets: 24 GOT: 60
Output file: '/home/alon/Projects/abc/abc/bin/Debug/abc.exe.s'.
Linking symbol: 'mono_aot_module_abc_info'.
Compiled 9 out of 9 methods (100%)
Methods without GOT slots: 1 (11%)
Direct calls: 0 (100%)
JIT time: 1 ms, Generation time: 0 ms, Assembly+Link time: 0 ms.
GOT slot distribution:
    class: 1
    image: 1
    ldstr: 1
    interruption_request_flag: 7
[root@localhost Debug]# ls
abc.exe  abc.exe.s
[root@localhost Debug]# as -o hello_world.o abc.exe.s
[root@localhost Debug]# ls
abc.exe  abc.exe.s  hello_world.o
[root@localhost Debug]# ld -o hello_world.so hello_world.o
ld: warning: cannot find entry symbol _start; defaulting to 0000000008049000
[root@localhost Debug]# ls
abc.exe  abc.exe.s  hello_world.o  hello_world.so
[root@localhost Debug]# ./hello_world.so
Segmentation fault (core dumped)
[root@localhost Debug]# 

セグメンテーション違反が発生するのはなぜですか? Fedora 12 x64 を使用しています。そして、ld の「エントリ シンボル _start が見つかりません」というエラーは何ですか?

ありがとう!

4

2 に答える 2

2

AOT は、GC、IO レイヤー、リフレクション、スレッド化、ランタイム コード生成などのために、Mono ランタイムを引き続き必要とします。JIT がコンパイルするコードをプリコンパイルし、共有可能なライブラリに配置するだけです。Mono ランタイムを起動する「実際の」エントリ ポイントは、まだ Mono にあります。

于 2010-01-14T02:25:49.003 に答える
0

_startバイナリのエントリポイントです。これは、OSがバイナリを起動して実行するために呼び出す関数です。Main関数を定義していますか?

AOTを使用していない場合でも機能しますか?(つまり、実行中mono hello_world.exeです。)

于 2010-01-13T20:39:43.100 に答える