問題タブ [libfuzzer]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c - Autotools ライブラリの libfuzzer を作成する
Autotools Mythbusterをビルド システムとして使用する Linux ライブラリがあります。Makefile.am
ライブラリのは次のとおりです。
このライブラリの libfuzzer を作成したいので、次のファイルに fuzzer の単純なエントリ ポイント ポイントを作成しましたsampletest.c
。
そしてMakefile.am
、私のlibfuzzerを構築するために次のように書きました
しかし、先に進んで と入力make
すると、次のエラーが表示されます。
gcc: error: unrecognized argument to '-fsanitize=' option: 'fuzzer'
に「ファザー」部分を含めない場合、次のように表示Makefile.am
されます。
(.text+0x24): undefined reference to
メイン」
私は何をすべきか ?