Changeset 159c62e
- Timestamp:
- Jul 5, 2016, 4:33:46 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 9bb81bb8
- Parents:
- d32c4e2
- Location:
- src
- Files:
-
- 1 added
- 1 deleted
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/Makefile.am
rd32c4e2 r159c62e 11 11 ## Created On : Sun May 31 08:54:01 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Mon Jun 13 14:27:22201614 ## Update Count : 1 6613 ## Last Modified On : Tue Jul 5 16:19:31 2016 14 ## Update Count : 178 15 15 ############################################################################### 16 16 … … 19 19 # put into lib for now 20 20 cfalibdir = ${libdir} 21 cfalib_DATA = prelude.cf builtins.cf21 cfalib_DATA = builtins.cf extras.cf prelude.cf 22 22 23 23 # create forward declarations for gcc builtins 24 ${libdir}/builtins.cf : ${libdir} ${srcdir}/builtins.cf 25 ${INSTALL} ${srcdir}/builtins.cf ${libdir} 26 sed -i -e "s#typedef.*ptrdiff_t.*#`@BACKEND_CC@ -E ${srcdir}/ptrdiff_t.c | grep 'typedef.*ptrdiff_t'`#" ${srcdir}/prelude.cf 24 extras.cf : extras.regx extras.c 25 @BACKEND_CC@ -E ${srcdir}/extras.c | grep -f extras.regx > ${srcdir}/extras.cf 27 26 28 27 builtins.cf : builtins.c 29 @if [ -e $< ] ; then \28 if [ -e $< ] ; then \ 30 29 @BACKEND_CC@ -E -P $^ | sed -e "/targetm/s/.*//" -e "/_Decimal/s/.*//" -e "s/void (const char \*)0();//" -e "s/\"//g" -e "s/\(__builtin_\) /\1/" > $@ ; \ 31 30 fi 32 31 33 32 builtins.c : builtins.def prototypes.awk 34 @if [ -e $< ] ; then \33 if [ -e $< ] ; then \ 35 34 @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@ ; \ 36 35 fi … … 40 39 prototypes.awk : 41 40 42 MAINTAINERCLEANFILES = ${addprefix ${libdir}/,${cfalib_DATA}} ${addprefix ${libdir}/,${lib_LIBRARIES}}41 MAINTAINERCLEANFILES = builtins.cf extras.cf ${addprefix ${libdir}/,${cfalib_DATA}} ${addprefix ${libdir}/,${lib_LIBRARIES}} 43 42 44 43 #-------------------------------------------------- 45 44 46 libcfa-prelude.c : ${srcdir}/prelude.cf 45 libcfa-prelude.c : ${srcdir}/prelude.cf ${srcdir}/extras.cf ${srcdir}/builtins.cf 47 46 ${abs_top_srcdir}/src/driver/cfa-cpp -l ${srcdir}/prelude.cf $@ # use src/cfa-cpp as not in lib until after install 48 47 … … 64 63 libcfa_a_SOURCES = libcfa-prelude.c ${headers:=.c} 65 64 66 nobase_include_HEADERS = ${headers} 65 nobase_include_HEADERS = ${headers} stdio.h 67 66 68 67 CLEANFILES = libcfa-prelude.c 69 MAINTAINERCLEANFILES += ${includedir}/* 68 69 maintainer-clean-local: 70 -rm -rf ${includedir}/* -
src/libcfa/Makefile.in
rd32c4e2 r159c62e 230 230 # put into lib for now 231 231 cfalibdir = ${libdir} 232 cfalib_DATA = prelude.cf builtins.cf 233 MAINTAINERCLEANFILES = ${addprefix ${libdir}/,${cfalib_DATA}} \ 234 ${addprefix ${libdir}/,${lib_LIBRARIES}} ${includedir}/* 232 cfalib_DATA = builtins.cf extras.cf prelude.cf 233 MAINTAINERCLEANFILES = builtins.cf extras.cf ${addprefix ${libdir}/,${cfalib_DATA}} ${addprefix ${libdir}/,${lib_LIBRARIES}} 235 234 headers = limits stdlib math iostream fstream iterator rational containers/vector 236 235 libobjs = ${headers:=.o} 237 236 libcfa_a_SOURCES = libcfa-prelude.c ${headers:=.c} 238 nobase_include_HEADERS = ${headers} 237 nobase_include_HEADERS = ${headers} stdio.h 239 238 CLEANFILES = libcfa-prelude.c 240 239 all: all-am … … 564 563 -rm -rf ./$(DEPDIR) 565 564 -rm -f Makefile 566 maintainer-clean-am: distclean-am maintainer-clean-generic 565 maintainer-clean-am: distclean-am maintainer-clean-generic \ 566 maintainer-clean-local 567 567 568 568 mostlyclean: mostlyclean-am … … 593 593 install-ps install-ps-am install-strip installcheck \ 594 594 installcheck-am installdirs maintainer-clean \ 595 maintainer-clean-generic m ostlyclean mostlyclean-compile\596 mostlyclean- generic pdf pdf-am ps ps-am tags uninstall\597 uninstall-am uninstall-cfalibDATA uninstall-libLIBRARIES\598 uninstall- nobase_includeHEADERS595 maintainer-clean-generic maintainer-clean-local mostlyclean \ 596 mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ 597 tags uninstall uninstall-am uninstall-cfalibDATA \ 598 uninstall-libLIBRARIES uninstall-nobase_includeHEADERS 599 599 600 600 601 601 # create forward declarations for gcc builtins 602 ${libdir}/builtins.cf : ${libdir} ${srcdir}/builtins.cf 603 ${INSTALL} ${srcdir}/builtins.cf ${libdir} 604 sed -i -e "s#typedef.*ptrdiff_t.*#`@BACKEND_CC@ -E ${srcdir}/ptrdiff_t.c | grep 'typedef.*ptrdiff_t'`#" ${srcdir}/prelude.cf 602 extras.cf : extras.regx extras.c 603 @BACKEND_CC@ -E ${srcdir}/extras.c | grep -f extras.regx > ${srcdir}/extras.cf 605 604 606 605 builtins.cf : builtins.c 607 @if [ -e $< ] ; then \606 if [ -e $< ] ; then \ 608 607 @BACKEND_CC@ -E -P $^ | sed -e "/targetm/s/.*//" -e "/_Decimal/s/.*//" -e "s/void (const char \*)0();//" -e "s/\"//g" -e "s/\(__builtin_\) /\1/" > $@ ; \ 609 608 fi 610 609 611 610 builtins.c : builtins.def prototypes.awk 612 @if [ -e $< ] ; then \611 if [ -e $< ] ; then \ 613 612 @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@ ; \ 614 613 fi … … 620 619 #-------------------------------------------------- 621 620 622 libcfa-prelude.c : ${srcdir}/prelude.cf 621 libcfa-prelude.c : ${srcdir}/prelude.cf ${srcdir}/extras.cf ${srcdir}/builtins.cf 623 622 ${abs_top_srcdir}/src/driver/cfa-cpp -l ${srcdir}/prelude.cf $@ # use src/cfa-cpp as not in lib until after install 624 623 … … 632 631 ${libobjs} : ${abs_top_srcdir}/src/driver/cfa-cpp # add dependency to cfa-cpp so all libraries are rebuilt with new translator 633 632 633 maintainer-clean-local: 634 -rm -rf ${includedir}/* 635 634 636 # Tell versions [3.59,3.63) of GNU make to not export all variables. 635 637 # Otherwise a system limit (for SysV at least) may be exceeded. -
src/libcfa/extras.c
rd32c4e2 r159c62e 1 1 #include <stddef.h> 2 #include <stdlib.h> -
src/libcfa/stdlib
rd32c4e2 r159c62e 10 10 // Created On : Thu Jan 28 17:12:35 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T hu Jun 30 15:04:18201613 // Update Count : 9 712 // Last Modified On : Tue Jul 5 09:56:31 2016 13 // Update Count : 98 14 14 // 15 16 //---------------------------------------17 18 extern "C" {19 #include <stddef.h> // size_t20 } // extern "C"21 15 22 16 //--------------------------------------- … … 27 21 #define EXIT_SUCCESS 0 // successful exit status 28 22 #endif // ! EXIT_FAILURE 29 void exit( int rc );30 void abort( void );31 23 } // extern "C" 32 24 -
src/main.cc
rd32c4e2 r159c62e 10 10 // Created On : Fri May 15 23:12:02 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Jun 5 15:57:30201613 // Update Count : 20 512 // Last Modified On : Tue Jul 5 15:23:11 2016 13 // Update Count : 209 14 14 // 15 15 … … 214 214 Parser::get_parser().set_debug( grammarp ); 215 215 216 // read in the builtins and the prelude216 // read in the builtins, extras, and the prelude 217 217 if ( ! nopreludep ) { // include gcc builtins 218 218 // -l is for initial build ONLY and builtins.cf is not in the lib directory so access it here. … … 222 222 exit( EXIT_FAILURE ); 223 223 } // if 224 225 224 parse( builtins, LinkageSpec::Compiler ); 225 226 // read the extra prelude in, if not generating the cfa library 227 FILE * extras = fopen( libcfap | treep ? "extras.cf" : CFA_LIBDIR "/extras.cf", "r" ); 228 if ( extras == NULL ) { 229 std::cerr << "Error: can't open extras.cf" << std::endl; 230 exit( EXIT_FAILURE ); 231 } // if 232 parse( extras, LinkageSpec::C ); 226 233 227 234 if ( ! libcfap ) {
Note: See TracChangeset
for help on using the changeset viewer.