Changes in src/main.cc [807ce84:b3c36f4]
- File:
-
- 1 edited
-
src/main.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
r807ce84 rb3c36f4 186 186 if ( ! nopreludep ) { // include gcc builtins 187 187 // -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 library189 188 FILE * builtins = fopen( libcfap | treep ? "../prelude/builtins.cf" : CFA_LIBDIR "/builtins.cf", "r" ); 190 189 assertf( builtins, "cannot open builtins.cf\n" ); 191 190 parse( builtins, LinkageSpec::Compiler ); 192 193 // Read to gcc builtins, if not generating the cfa library194 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 );197 191 198 192 // read the extra prelude in, if not generating the cfa library
Note:
See TracChangeset
for help on using the changeset viewer.