/[ascend]/trunk/SConstruct
ViewVC logotype

Diff of /trunk/SConstruct

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 645 by johnpye, Mon May 29 07:19:36 2006 UTC revision 646 by johnpye, Mon May 29 13:19:54 2006 UTC
# Line 582  def CheckGccVisibility(context): Line 582  def CheckGccVisibility(context):
582  # YACC  # YACC
583    
584  yacc_test_text = """  yacc_test_text = """
585    %{
586    #include <stdio.h>
587    %}
588    %token MSG
589  %start ROOT  %start ROOT
590     %token MSG  %%
591     %%  ROOT:
592        MSG { printf("HELLO"); }
593     ROOT:      ;
594       MSG { print("HELLO"); }  %%
    ;  
595  """  """
596    
597  def CheckYacc(context):  def CheckYacc(context):

Legend:
Removed from v.645  
changed lines
  Added in v.646

john.pye@anu.edu.au
ViewVC Help
Powered by ViewVC 1.1.22