Classification: |
Java |
Category: |
JNI |
Created: |
06/21/99 |
Modified: |
08/24/2001 |
Number: |
FAQ-0236 |
Platform: |
ER5 |
|
Question: The following nmake command lines described in the Java SDK Help for use with JNI builds are not recognised: >nmake emulation-debug >nmake emulation-optimized >nmake arm-optimized
Answer: The syntax was published incorrectly. The correct syntax for these three options is: >nmake target=emulation debug>nmake target=emulation optimized
>nmake target=arm optimized
|