Changeset 2621 for script

Show
Ignore:
Timestamp:
05/02/05 16:07:13 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
4152
Message:

* eval_yaml() support.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • script/pugscc

    r2602 r2621  
    7979    # XXX - This chunk should be read off Pugs config anyway. 
    8080    my @ghc_flags = ( 
    81         "-L$base", "-L$core", "-L$core/pcre", 
    82         "-I$base", "-I$core", "-I$core/pcre", 
    83         "-i$base", "-i$core", "-i$core/pcre", 
     81        "-L$base", "-L$core", "-L$core/pcre", "-L$core/syck", 
     82        "-I$base", "-I$core", "-I$core/pcre", "-I$core/syck", 
     83        "-i$base", "-i$core", "-i$core/pcre", "-i$core/syck", 
    8484        qw(-static -Wall -fno-warn-unused-imports -fno-warn-unused-binds -fno-warn-missing-signatures -fno-warn-name-shadowing), 
    8585    ); 
     
    9090 
    9191    push @ghc_flags, "$core/pcre/pcre.o"; 
     92    push @ghc_flags, "$core/syck/syck.o"; 
    9293    push @ghc_flags, "$core/UnicodeC.o"; 
    9394