0

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 toHPDF_Page_SetRGBStroke'`

Arnkrishn
  • 29,828
  • 40
  • 114
  • 128
mark
  • 31
  • 1
  • 6

1 Answers1

0

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
  • 776,304
  • 153
  • 1,341
  • 1,358