46

一部のフレームワーク (Qt、Windows、Gtk...) は、バイナリにリソースを追加する機能を提供します。本当に必要なのは

  1. バイナリ内のリソースのアドレスを含むシンボル (データ セグメント)
  2. リソースの長さを表す記号
  3. リソース自体

これは gcc ツールチェーンでどのように達成できますか?

4

2 に答える 2

48

あなたはこれを行うことができます:

objcopy --input binary \
        --output elf32-i386 \
        --binary-architecture i386 my_file.xml myfile.o

これにより、実行可能ファイルにリンクできるオブジェクト ファイルが生成されます。このファイルには、これらのシンボルを使用できるようにするために C コードで宣言する必要があるシンボルが含まれます。

00000550 D _binary_my_file_xml_end
00000550 A _binary_my_file_xml_size 
00000000 D _binary_my_file_xml_start
于 2012-12-13T09:56:58.137 に答える
31

最も基本的なものは、charバイトでいっぱいの配列です。

Linuxでは、xxd -i <file>ファイルを配列に「コンパイル」してからchar、配列をバイナリにリンクし、構成バイトを自由に使用できます。

HTMLテンプレートを表す一連の配列を含む、makefileと呼ばれる「リソースファイル」を作成する、私自身のコードの例を次に示します。templates.hchar

templates.h:
    @echo "#ifndef REDACTED_TEMPLATES_H" > templates.h
    @echo "#define REDACTED_TEMPLATES_H" >> templates.h
    @echo "// Auto-generated file! Do not modify!" >> templates.h
    @echo "// NB: arrays are not null-terminated" >> templates.h
    @echo "// (anonymous namespace used to force internal linkage)" >> templates.h
    @echo "namespace {" >> templates.h
    @echo "namespace templates {" >> templates.h
    @cd templates;\
    for i in * ;\
    do \
        echo "Compiling $$i...";\
        xxd -i $$i | sed -e 's/ =/ __attribute__((unused)) =/' >> ../templates.h;\
    done;\
    cd ..
    @echo "}" >> templates.h
    @echo "}" >> templates.h
    @echo "#endif" >> templates.h

(参照: これらの自動生成オブジェクトに `__attribute__ ((unused))` をプログラムで適用するにはどうすればよいですか? )

結果は次のようになります。

#ifndef REDACTED_TEMPLATES_H
#define REDACTED_TEMPLATES_H
// Auto-generated file! Do not modify!
// NB: arrays are not null-terminated
// (anonymous namespace used to force internal linkage)
namespace {
namespace templates {
unsigned char alert_email_finished_events_html[] __attribute__((unused)) = {
  0x3c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
  0x3d, 0x22, 0x6e, 0x6f, 0x64, 0x65, 0x2d, 0x69, 0x6e, 0x66, 0x6f, 0x2d,
[..]
  0x7d, 0x7d, 0x0d, 0x0a, 0x3c, 0x2f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3e,
  0x0d, 0x0a
};
unsigned int alert_email_finished_events_html_len __attribute__((unused)) = 290;
unsigned char alert_email_finished_events_list_html[] __attribute__((unused)) = {
  0x3c, 0x74, 0x72, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73,
  0x65, 0x70, 0x61, 0x72, 0x61, 0x74, 0x65, 0x2d, 0x70, 0x72, 0x65, 0x76,
[..]
  0x73, 0x74, 0x7d, 0x7d, 0x0d, 0x0a
};
unsigned int alert_email_finished_events_list_html_len __attribute__((unused)) = 42;
}
}
#endif

この特定の例は、リソースを 1 つの翻訳単位でのみ使用する場合に最適ですが、一般的なアプローチはニーズに合わせて調整できます。

于 2012-12-13T09:41:20.843 に答える