Overview
Comment: | tcc4tcl 0.16 -- support out-of-directory builds and older Make |
---|---|
Timelines: | family | ancestors | descendants | both | trunk | 0.16 |
Files: | files | file ages | folders |
SHA1: |
c000e01e2614a74450de31490d22a537 |
User & Date: | rkeene on 2014-05-23 19:00:14 |
Other Links: | manifest | tags |
Context
2014-05-23
| ||
19:11 | Added missing srcdir reference for test target check-in: 385e536150 user: rkeene tags: trunk | |
19:00 | tcc4tcl 0.16 -- support out-of-directory builds and older Make check-in: c000e01e26 user: rkeene tags: trunk, 0.16 | |
2014-05-22
| ||
17:18 | tcc4tcl 0.15 -- updated to default to providing dlopen unless --without-dlopen is requested check-in: 0ca601053b user: rkeene tags: trunk, 0.15 | |
Changes
Modified build/makearch.info from [04b1d4f5eb] to [995918e494].
︙ | ︙ | |||
13 14 15 16 17 18 19 | # If set to "auto" it will be maintained in a file called .version # in the source directory and the revision will be incremented # each time a "makearch" is done. # # If @@SVNLCR@@ is used anywhere in this version number, it will be # replaced with the highest last-changed-rev from the output of # svn info -R (or 0) | | | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # If set to "auto" it will be maintained in a file called .version # in the source directory and the revision will be incremented # each time a "makearch" is done. # # If @@SVNLCR@@ is used anywhere in this version number, it will be # replaced with the highest last-changed-rev from the output of # svn info -R (or 0) VERS="0.16" # Space sperated list of documents, if they exist, they will be # prefixed with the contents of the DOC_HDR file and substitution # will occur: # @@UTIL@@ becomes the utility name ${UTIL} # @@VERS@@ becomes the utility version # @@DATE@@ becomes the current date |
︙ | ︙ |
Added build/tcc-patches/0.9.26/tcc-0.9.26-supportoldmake.diff version [1b03a619ec].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | diff -uNr tcc-0.9.26.orig/Makefile tcc-0.9.26-1supportoldmake/Makefile --- tcc-0.9.26.orig/Makefile 2013-02-15 08:24:00.000000000 -0600 +++ tcc-0.9.26-1supportoldmake/Makefile 2014-05-23 13:44:31.506517000 -0500 @@ -97,26 +97,34 @@ PROGS_CROSS=$(WIN32_CROSS) $(I386_CROSS) $(X64_CROSS) $(ARM_CROSS) $(C67_CROSS) LIBTCC1_CROSS=lib/i386-win32/libtcc1.a LIBTCC1=libtcc1.a -else ifdef CONFIG_WIN32 +else +ifdef CONFIG_WIN32 PROGS+=tiny_impdef$(EXESUF) tiny_libmaker$(EXESUF) NATIVE_FILES=$(WIN32_FILES) PROGS_CROSS=$(WIN64_CROSS) $(I386_CROSS) $(X64_CROSS) $(ARM_CROSS) $(C67_CROSS) LIBTCC1_CROSS=lib/x86_64-win32/libtcc1.a LIBTCC1=libtcc1.a -else ifeq ($(ARCH),i386) +else +ifeq ($(ARCH),i386) NATIVE_FILES=$(I386_FILES) PROGS_CROSS=$(X64_CROSS) $(WIN32_CROSS) $(WIN64_CROSS) $(ARM_CROSS) $(C67_CROSS) LIBTCC1_CROSS=lib/i386-win32/libtcc1.a lib/x86_64-win32/libtcc1.a LIBTCC1=libtcc1.a -else ifeq ($(ARCH),x86-64) +else +ifeq ($(ARCH),x86-64) NATIVE_FILES=$(X86_64_FILES) PROGS_CROSS=$(I386_CROSS) $(WIN32_CROSS) $(WIN64_CROSS) $(ARM_CROSS) $(C67_CROSS) LIBTCC1_CROSS=lib/i386-win32/libtcc1.a lib/x86_64-win32/libtcc1.a lib/i386/libtcc1.a LIBTCC1=libtcc1.a -else ifeq ($(ARCH),arm) +else +ifeq ($(ARCH),arm) NATIVE_FILES=$(ARM_FILES) PROGS_CROSS=$(I386_CROSS) $(X64_CROSS) $(WIN32_CROSS) $(WIN64_CROSS) $(C67_CROSS) endif +endif +endif +endif +endif ifeq ($(TARGETOS),Darwin) PROGS+=tiny_libmaker$(EXESUF) |
Modified configure.ac from [3af96890fd] to [c1e20b872e].
︙ | ︙ | |||
71 72 73 74 75 76 77 | AC_SUBST(HOST_PATH_SEPARATOR) dnl Perform Tcl Extension required stuff TCLEXT_INIT dnl This must be done last since it breaks the compilation if test "${TCC4TCL_TARGET}" = "shared"; then | | | 71 72 73 74 75 76 77 78 79 80 81 82 83 | AC_SUBST(HOST_PATH_SEPARATOR) dnl Perform Tcl Extension required stuff TCLEXT_INIT dnl This must be done last since it breaks the compilation if test "${TCC4TCL_TARGET}" = "shared"; then DC_SETVERSIONSCRIPT([${srcdir}/tcc4tcl.vers], [tcc4tcl.syms]) DC_FIND_STRIP_AND_REMOVESYMS([tcc4tcl.syms]) fi dnl Produce output AC_OUTPUT(Makefile pkgIndex.tcl tcc4tcl.syms) |