Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
.cpp ファイルをリンクせずに .s および .o にコンパイルするためのオプションは何ですか。
g++ -s -c を使用しましたが、.o ファイルしか生成されませんでした。
メインへの未定義参照を作成する g++ -s (メインではなくクラス実装であるため)
asm ファイルを生成するオプションは-S、gcc では大文字の S です (使用していた-s)。
-S
-s