CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    May 2006
    Posts
    57

    Red face Error while compiling

    Hi,

    can anyone tell what type of error is this

    --------------------Configuration: libming - Win32 Debug--------------------
    Performing Custom Build Step on ..\src\actioncompiler\swf5compiler.y
    'bison.exe' is not recognized as an internal or external command,
    operable program or batch file.
    'bison.exe' is not recognized as an internal or external command,
    operable program or batch file.
    Error executing c:\windows\system32\cmd.exe.



    thanks in advance

  2. #2
    Join Date
    Jun 2004
    Posts
    1,352

    Re: Error while compiling

    It looks like you are trying to run bison.exe and have not put it into a string.


    Post your line of code where you are calling bison.exe, are you using the system command?
    Rate this post if it helped you.

  3. #3
    Join Date
    Jul 2012
    Posts
    1

    Post Re: Error while compiling

    Hi,

    I got the following error while build the php4ts_debug.dll

    --------------------Configuration: ZendTS - Win32 Debug_TS--------------------
    Performing Custom Build Step on ".\zend_language_parser.y"
    'bison' is not recognized as an internal or external command,
    operable program or batch file.
    Error executing c:\windows\system32\cmd.exe.

    php4ts_debug.dll - 1 error(s), 0 warning(s)

    I don't have bison.exe in my system.

    Kindly do the needful.

    Regards
    Guna

  4. #4
    Join Date
    Mar 2001
    Posts
    2,529

    Re: Error while compiling

    You probably need to install bison to compile this. Bison is a product
    that helps you build programming languages and interpreters.

    http://gnuwin32.sourceforge.net/packages/bison.htm
    ahoodin
    To keep the plot moving, that's why.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured