Hi Jonathan, You wrote: > Hi, > > I want to include pdump and disassemble in POW, and they seem not to be > compiled by a normal Configure/make. So, I went to compile them, and while > I can get pdump.obj and disassemble.obj, I'm having trouble linking them. > > Please could somebody put me out of my misery and tell me what I need to > link them against? :-) I've played around with it for quite a while by > trying to figure out what I should be using, and looked through the docs > (didn't find anything to help).
POW? My Makefile has those two targets... but just in case you can't do that (maybe something to do with that POW thing), here are the command lines + outputs: % make pdump gcc -o pdump pdump.o packdump.o -L/usr/local/lib -g blib/lib/libparrot.a -lpthread -lnsl -ldl -lm -lcrypt -lutil % make disassemble disassemble.c gcc -o disassemble disassemble.o -L/usr/local/lib -g blib/lib/libparrot.a -lpthread -lnsl -ldl -lm -lcrypt -lutil Hope this helped. Luke > Many thanks, > > Jonathan >