1

i already have a complete VS Solution (that is working on other systems) and i am trying to get it to build on my computer aswell.

The program is using log4cplus to (obviously) log - i already included the needed files, but when building VS tells me, that log4cplusUD.lib is missing. When searching through log4cplus i only found log4cplusS.lib and log4cplusD.lib

Does somebody know how to get this library or how to adjust VS to accept the other libraries? Thanks in advance :)

sgtdroelf
  • 15
  • 6
  • Please share more details about your question. Ex: log4cplus version, vc version and etc.. ANd also incude error message. – Cherkesgiller Nov 04 '16 at 08:16
  • I'm getting the `LNK1104: cannot open file log4cplusud.lib` Error - That of course means, that VS can't either open or find this file, which is correct, since i can't find it either. I'm running log4cplus 1.1.3. – sgtdroelf Nov 04 '16 at 08:25
  • What profile did you choose to build Debug or Release or anything etc? , how did obtain the log4cplus lib, did you build it from scratch ? or get binaries from somewhere? – Cherkesgiller Nov 04 '16 at 08:37

1 Answers1

0

I had the same problem and i suppose you are using an already given folder containing the log4cplus data. Try to build it again and then you'll hopefully find the file. That solved it for me.

SgtDroelf
  • 331
  • 1
  • 18
  • I indeed was given a folder containing the log4cplus data. Building it on my own fixed my problem, thanks! – sgtdroelf Nov 10 '16 at 11:32