certi-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [certi-dev] CERTI-Devel Digest, Vol 97, Issue 1


From: ????????
Subject: Re: [certi-dev] CERTI-Devel Digest, Vol 97, Issue 1
Date: Tue, 16 Dec 2014 01:41:45 +0800

 
I add a precompiling macro to solve the first problem as below:
#ifndef _WIN32
#incude <unistd.h>
#endif
 
The 2nd problem,I just comment the line 78 to fix it.
%token TRANSPORT
line77:%token TIMESTAMP_TOKEN
line78: //%error-verbose  //before %error-verbose 
line78%start fed
%%
 My god,all is OK after the small fix through I did not know what and why.
 
------------------ Original ------------------
From:  "certi-devel-request";<address@hidden>;
Date:  Tue, Dec 16, 2014 01:00 AM
To:  "certi-devel"<address@hidden>;
Subject:  CERTI-Devel Digest, Vol 97, Issue 1

Send CERTI-Devel mailing list submissions to
address@hidden

To subscribe or unsubscribe via the World Wide Web, visit
https://lists.nongnu.org/mailman/listinfo/certi-devel
or, via email, send a message with subject or body 'help' to
address@hidden

You can reach the person managing the list at
address@hidden

When replying, please edit your Subject line so it is more specific
than "Re: Contents of CERTI-Devel digest..."


Today's Topics:

   1.  Some mistakes found while compiling CERT 3.4.3
      (=?gb18030?B?ztKwrsK/zb4=?=)
   2. Re:  Some mistakes found while compiling CERT 3.4.3
      (Timi Tuohenmaa)


----------------------------------------------------------------------

Message: 1
Date: Mon, 15 Dec 2014 14:20:46 +0800
From: "=?gb18030?B?ztKwrsK/zb4=?=" <address@hidden>
To: "=?gb18030?B?Y2VydGktZGV2ZWw=?=" <address@hidden>
Subject: [certi-dev] Some mistakes found while compiling CERT 3.4.3
Message-ID: <address@hidden>
Content-Type: text/plain; charset="gb18030"

Hello,everyone.I'm compiling CERTI 3.4.3,but I found some misktakes while doing it.
 My environmet:Win7 32 Bits,Cmake 2.8.12.2, MSVC 2012 update4, Chinese.
 some tools:bison.exe,flex.exe,gzip.exe,gunzip.exe were downloaded from 
file:///F:/Downloads/UnxUtils/UnxUtilsDist.html
 
while using Cmake ,I set COMPRESSIONCOMAND = D:/UnxUtils/usr/local/wbin/gzip.exe,GUNZIPCOMMAND=path/gunzip.exe,LEX_PROGRAM=path/flex.exe and YACC_PROGRAM=path/bison.exe.
 
configure and generate the solution.All is OK.
 
 Then I load CERTI.sln?and to generate the whole solution and foud some mistakes:
 
1,while compiling liCERTI:
 
 Generating tokens.cc
       Generating syntax.cc, syntax.h
       e:/certi/certi-3.4.3-source/libcerti/syntax.yy:78: unrecognized: %error_verbose
       e:/certi/certi-3.4.3-source/libcerti/syntax.yy:78:    Skipping to next %
      C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppCommon.targets(172,5): error MSB6006: ?cmd.exe? exit with 1.
 
2,in tokens.cc line 26,# include <unistd.h> can not be found,miss a precompile macro?
 
I know nothing about compile tools,so I can do nothing about the first mistake but waiting.`|`
 
can some one fix the problem?thank you.
 
                                                        YangJing
 
                                               address@hidden
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.nongnu.org/archive/html/certi-devel/attachments/20141215/96def0cc/attachment.html>

------------------------------

Message: 2
Date: Mon, 15 Dec 2014 16:35:45 +0200
From: Timi Tuohenmaa <address@hidden>
To: CERTI development discussions <address@hidden>
Subject: Re: [certi-dev] Some mistakes found while compiling CERT
3.4.3
Message-ID:
<address@hidden>
Content-Type: text/plain; charset=UTF-8

Hi,

Easiest way to fix this is to create empty unistd.h file to your
certi's include directory and try to compile again. That file is
available in Visual Studio, but it also does not contain anything you
actually need so you can just "cheat" by creating empty file for it.


--
Timi Tuohenmaa


2014-12-15 8:20 GMT+02:00 ???? <address@hidden>:
> Hello,everyone.I'm compiling CERTI 3.4.3,but I found some misktakes while
> doing it.
> My environmet:Win7 32 Bits,Cmake 2.8.12.2, MSVC 2012 update4, Chinese.
> some tools:bison.exe,flex.exe,gzip.exe,gunzip.exe were downloaded from
>
> file:///F:/Downloads/UnxUtils/UnxUtilsDist.html
>
> while using Cmake ,I set COMPRESSIONCOMAND =
> D:/UnxUtils/usr/local/wbin/gzip.exe,GUNZIPCOMMAND=path/gunzip.exe,LEX_PROGRAM=path/flex.exe
> and YACC_PROGRAM=path/bison.exe.
>
> configure and generate the solution.All is OK.
>
>  Then I load CERTI.sln?and to generate the whole solution and foud some
> mistakes:
>
> 1,while compiling liCERTI:
>
>  Generating tokens.cc
>        Generating syntax.cc, syntax.h
>        e:/certi/certi-3.4.3-source/libcerti/syntax.yy:78: unrecognized:
> %error_verbose
>        e:/certi/certi-3.4.3-source/libcerti/syntax.yy:78:    Skipping to
> next %
>       C:\Program
> Files\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppCommon.targets(172,5):
> error MSB6006: ?cmd.exe? exit with 1.
>
> 2,in tokens.cc line 26,# include <unistd.h> can not be found,miss a
> precompile macro?
>
> I know nothing about compile tools,so I can do nothing about the first
> mistake but waiting.`|`
>
> can some one fix the problem?thank you.
>
>                                                         YangJing
>
>                                                address@hidden
>
>
> --
> CERTI-Devel mailing list
> address@hidden
> https://lists.nongnu.org/mailman/listinfo/certi-devel
>



------------------------------

_______________________________________________
CERTI-Devel mailing list
address@hidden
https://lists.nongnu.org/mailman/listinfo/certi-devel


End of CERTI-Devel Digest, Vol 97, Issue 1
******************************************

reply via email to

[Prev in Thread] Current Thread [Next in Thread]