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

------------------------------------------------------------------------------
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with <2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
_______________________________________________
Linuxsampler-devel mailing list
Linuxsampler-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linuxsampler-devel

Reply via email to