Changeset 5ebb2fbc for src/prelude
- Timestamp:
- Jan 18, 2017, 12:47:15 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, stuck-waitfor-destruct, with_gc
- Children:
- e9e4e9ee
- Parents:
- f3b0a07 (diff), c49bf54 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- src/prelude
- Files:
-
- 3 edited
-
Makefile.am (modified) (1 diff)
-
Makefile.in (modified) (1 diff)
-
bootloader.cf (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/prelude/Makefile.am
rf3b0a07 r5ebb2fbc 45 45 ${AM_V_GEN}${abs_top_srcdir}/src/driver/cfa-cpp -l prelude.cf $@ # use src/cfa-cpp as not in lib until after install 46 46 47 bootloader.c : bootloader.cf extras.cf builtins.cf ${abs_top_srcdir}/src/driver/cfa-cpp47 bootloader.c : bootloader.cf prelude.cf extras.cf builtins.cf ${abs_top_srcdir}/src/driver/cfa-cpp 48 48 ${AM_V_GEN}${abs_top_srcdir}/src/driver/cfa-cpp -tpm bootloader.cf $@ # use src/cfa-cpp as not in lib until after install 49 49 -
src/prelude/Makefile.in
rf3b0a07 r5ebb2fbc 441 441 ${AM_V_GEN}${abs_top_srcdir}/src/driver/cfa-cpp -l prelude.cf $@ # use src/cfa-cpp as not in lib until after install 442 442 443 bootloader.c : bootloader.cf extras.cf builtins.cf ${abs_top_srcdir}/src/driver/cfa-cpp443 bootloader.c : bootloader.cf prelude.cf extras.cf builtins.cf ${abs_top_srcdir}/src/driver/cfa-cpp 444 444 ${AM_V_GEN}${abs_top_srcdir}/src/driver/cfa-cpp -tpm bootloader.cf $@ # use src/cfa-cpp as not in lib until after install 445 445 -
src/prelude/bootloader.cf
rf3b0a07 r5ebb2fbc 1 extern int invoke_main(int argc, char* argv[], char* envp[]);1 extern "C" { static inline int invoke_main(int argc, char* argv[], char* envp[]); } 2 2 3 3 int main(int argc, char* argv[], char* envp[]) {
Note:
See TracChangeset
for help on using the changeset viewer.