Skip to Content.
Sympa Menu

illinois-ml-nlp-users - [Illinois-ml-nlp-users] Fwd: FEX compile errors

illinois-ml-nlp-users AT lists.cs.illinois.edu

Subject: Support for users of CCG software closed 7-27-20

List archive

[Illinois-ml-nlp-users] Fwd: FEX compile errors


Chronological Thread 
  • From: Lars Buitinck <larsmans AT gmail.com>
  • To: "illinois-ml-nlp-users AT cs.uiuc.edu\"" <illinois-ml-nlp-users AT cs.uiuc.edu>
  • Subject: [Illinois-ml-nlp-users] Fwd: FEX compile errors
  • Date: Tue, 10 May 2011 22:27:27 +0200
  • List-archive: <http://lists.cs.uiuc.edu/pipermail/illinois-ml-nlp-users>
  • List-id: Support for users of CCG software <illinois-ml-nlp-users.cs.uiuc.edu>

I hit reply instead of reply-all and this got sent to mr. Corman only,
so Fwd: to the list.


---------- Forwarded message ----------
From: Lars Buitinck
<larsmans AT gmail.com>
Date: 2011/5/10
Subject: Re: [Illinois-ml-nlp-users] FEX compile errors
To: Steven Corman
<steve.corman AT asu.edu>


Hi Steven,

2011/5/10 Steven Corman
<steve.corman AT asu.edu>:
> [root@stats
> fex]# gmake

Side remark: please don't do regular work as root, use sudo if you must.

> FexParams.cpp: In function ‘bool ProcessParam(int, const char*,
> FexGlobalParams&)’:
>
> FexParams.cpp:113:47: error: ‘atoi’ was not declared in this scope
> FexParams.cpp:128:37: error: ‘strcmp’ was not declared in this scope
> FexParams.cpp:149:47: error: ‘atof’ was not declared in this scope
> FexParams.cpp:183:34: error: ‘strcmp’ was not declared in this scope
> FexParams.cpp:209:30: error: ‘strcmp’ was not declared in this scope

No experience with this particular package, but it looks some headers
weren't included. Try adding

   #include <stdlib.h>
   #include <string.h>

near the top of FexParams.cpp. If that doesn't work, add

   using namespace std;

below the #include lines.

Regards,

Lars





Archive powered by MHonArc 2.6.16.

Top of Page