in reply to Re^5: XS build error
in thread XS build error

undefined reference to `boot_Device__Modem__Protocol__Zmodem'

What does (the generated) Zmodem.def contain ? It should contain something like:
EXPORTS boot_Device__Modem__Protocol__Zmodem _boot_Device__Modem__Protocol__Zmodem = boot_Device__Modem__Protocol +__Zmodem
I think it's the Zmodem.xs file that determines the contents of the def file, so if the def file is wrong, it's probably a mistake in Zmodem.xs. (This stuff is case-sensitive, so pay attention to that aspect.)

Cheers,
Rob

Replies are listed 'Best First'.
Re^7: XS build error
by pvizeli (Initiate) on Jan 07, 2010 at 14:37 UTC

    of course the problem was this:

    MODULE = Device::Modem::Protocol::Zmodem PACKAGE = Zmodem::Misc

    Thanks for all monk support :)