1

I'm new to ocaml and ubuntu and I'm trying to compile a very simple ocaml file following this tutorial : http://wiki.njh.eu/OCaml_and_SDL

The problem is that it's not compiling I have the following error and I don't understand what to do :

cc   testsdl_1.o   -o testsdl_1
cc: testsdl_1.o: Aucun fichier ou dossier de ce type
cc: no input files
make: *** [testsdl_1] Erreur 1
4

1 に答える 1

1

testsdl_1.oコンパイラは、が存在しないという事実について不平を言います。これは、それが生成されていないことを意味します。したがって、引用されている行ののどこかにエラーがありました。問題を解決したい場合は、より多くの情報を提供する必要があります (または、解決策が見つかった場合は解決策を提供してください)。

于 2013-01-09T08:52:57.083 に答える