Changeset faf8857 for src/main.cc
- Timestamp:
- Dec 17, 2015, 1:03:33 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
- Children:
- c23f807
- Parents:
- 5e0fa1f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
r5e0fa1f rfaf8857 10 10 // Created On : Fri May 15 23:12:02 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Dec 17 07:26:03201513 // Update Count : 17 112 // Last Modified On : Thu Dec 17 12:59:06 2015 13 // Update Count : 179 14 14 // 15 15 … … 187 187 // read in the builtins and the prelude 188 188 if ( ! nopreludep ) { // include gcc builtins 189 // -l is for initial build and builtins.cf is not in the lib directory yetso access it here.190 FILE * builtins = fopen( libcfap ? CFA_PREFIX "/src/libcfa" "/builtins.cf" : "libcfa/builtins.cf", "r" );189 // -l is for initial build ONLY and builtins.cf is not in the lib directory so access it here. 190 FILE * builtins = fopen( libcfap ? "./builtins.cf" : CFA_LIBDIR "/builtins.cf", "r" ); 191 191 if ( builtins == NULL ) { 192 192 std::cerr << "Error: can't open builtins" << std::endl; … … 197 197 198 198 if ( ! libcfap ) { 199 // read the prelude in, if we'renot generating the cfa library199 // read the prelude in, if not generating the cfa library 200 200 FILE * prelude = fopen( CFA_LIBDIR "/prelude.cf", "r" ); 201 201 if ( prelude == NULL ) { … … 208 208 } // if 209 209 210 if ( libcfap ) { 211 parse( input, LinkageSpec::Intrinsic ); 212 } else { 213 parse( input, LinkageSpec::Cforall, grammarp ); 214 } 210 parse( input, libcfap ? LinkageSpec::Intrinsic : LinkageSpec::Cforall, grammarp ); 215 211 216 212 if ( parsep ) {
Note: See TracChangeset
for help on using the changeset viewer.