|
From: Christian S. <sch...@li...> - 2013-05-31 12:10:13
|
On Friday 31 May 2013 13:24:32 Nick Humphrey wrote:
> what am i doing wrong?
>
> cc -c nki.c
-c creates an object file, which is not an executable, but rather an
intermediary object, which has to be linked to a final executable.
By leaving off "-c" the compiler will create an executable binary instead.
However in this particular case of nkitool, you also need to link zlib to the
binary ("-lz" usually).
Please note that the current version of nkitool only works for Kontakt version
< 4.2.2, since the nki file format changed. More on:
http://www.linuxsampler.org/nkitool/
CU
Christian
|