Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main.cc

    r807ce84 rb3c36f4  
    186186                if ( ! nopreludep ) {                                                   // include gcc builtins
    187187                        // -l is for initial build ONLY and builtins.cf is not in the lib directory so access it here.
    188                         // Read to cfa builtins, if not generating the cfa library
    189188                        FILE * builtins = fopen( libcfap | treep ? "../prelude/builtins.cf" : CFA_LIBDIR "/builtins.cf", "r" );
    190189                        assertf( builtins, "cannot open builtins.cf\n" );
    191190                        parse( builtins, LinkageSpec::Compiler );
    192 
    193                         // Read to gcc builtins, if not generating the cfa library
    194                         FILE * gcc_builtins = fopen( libcfap | treep ? "../prelude/gcc-builtins.cf" : CFA_LIBDIR "/gcc-builtins.cf", "r" );
    195                         assertf( gcc_builtins, "cannot open gcc-builtins.cf\n" );
    196                         parse( gcc_builtins, LinkageSpec::Compiler );
    197191
    198192                        // read the extra prelude in, if not generating the cfa library
Note: See TracChangeset for help on using the changeset viewer.