can anyone help me on how to use libharu. i already downloaded libharu and am trying to run their sample demo in dev-c++ environment but the errors a raises. this is the error message: C:\DOCUME~1\ITCPIA~1\LOCALS~1\Temp/ccUDbaaa.o(.text+0x6d):text_demo.c: undefined reference to
HPDF_Page_SetRGBStroke'`
views:
108answers:
1
A:
An undefined reference when linking means that you've forgotten to link against the proper library. Either add it to your references, or add -lharu
to the command line, or whatever your development tool of choice requires for libraries.
Ignacio Vazquez-Abrams
2010-01-28 03:01:14
may i know how to link it? thanks in advance!
mark
2010-01-28 06:01:47
The manual for your development tool of choice will explain how.
Ignacio Vazquez-Abrams
2010-01-28 06:03:26