1

私が書いている Java プログラムで GMP を使おうとしています。

ここにあるラッパーを使用しようとしています: https://bitbucket.org/dfdeshom/gmp-java/overview

「make」と入力するだけでよいと書かれています...

私はかなり迷っています。

私のコンピューターには GMP がインストールされており (私が思うに)、Cygwin がコンピューターにインストールされています。(GMPのインストールに使用しました)。

上記のリンクから解凍したダウンロード ファイルのディレクトリを Cygwin にロードし、「make」と入力すると、次の出力が表示されます。

javac -Xlint org/dfdeshom/math/GMP.java
make: javac: Command not found
Makefile:12: recipe for target `jni' failed
make: *** [jni] Error 127

Java Native Interface に関する経験や知識がほとんどなく、このファイルを「作成」する方法がわかりません。上記のリンクによると、「make」が成功すると、GMP.jar ファイルが作成されます。

これを正しく行うにはどうすればよいですか?非常に詳細な説明が高く評価されます。

ありがとうございました!!

4

1 に答える 1

1

The important bit is this line

make: javac: Command not found

this suggests you don't have the java compiler on your path.
This could be caused by a couple of reasons:

  1. your path is incorrect.
  2. you only have the JRE installed and not the JDK.
于 2013-10-29T02:02:45.737 に答える