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.
アセンブラーと C でコードをコンパイルして、exe プログラムを作成しようとしています。
gcc -m32 aaa aaa.s aaa.c
そして、私はエラーが発生します:
gcc: aaa : そのようなファイルまたはディレクトリはありません
C ファイルでは、stdio.h のみをインクルードします。問題は gcc がこのライブラリを見つけられない可能性があることを読みましたが、そうであるかどうかはわかりません。
出力実行可能ファイルを識別するためのフラグがありません。試す
gcc -m32 -o aaa aaa.s aaa.c