Overview
Comment: | Updated to pass compiler information to TCC and support basic multilib (-m32/-m64) compilers |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8112d63e73ccffb577e4acdb67c0eb3c |
User & Date: | rkeene on 2014-05-18 20:46:57 |
Other Links: | manifest | tags |
Context
2014-05-18
| ||
21:05 | Win64 build fixes check-in: e89c02337a user: rkeene tags: trunk | |
20:46 | Updated to pass compiler information to TCC and support basic multilib (-m32/-m64) compilers check-in: 8112d63e73 user: rkeene tags: trunk | |
02:21 | tcc4tcl 0.10 check-in: ef02f1b927 user: rkeene tags: trunk, 0.10 | |
Changes
Modified Makefile.in from [d1e42a6427] to [d4f614c5a5].
︙ | |||
18 19 20 21 22 23 24 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | - + | PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ TCLCONFIGPATH = @TCLCONFIGPATH@ TCL_PACKAGE_PATH = @TCL_PACKAGE_PATH@ tcllibdir = $(shell if echo "$(libdir)" | grep '^UNSPECIFIED' >/dev/null; then echo $(TCL_PACKAGE_PATH); else echo "$(libdir)"; fi) PACKAGE_INSTALL_DIR = $(tcllibdir)/$(PACKAGE_NAME)-$(PACKAGE_VERSION) |
︙ |
Modified build/tcc-patches/0.9.26/tcc-0.9.26-crosscompilefixes.diff from [f12a7b0ba6] to [b603edb09a].
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | diff -uNr tcc-0.9.26.orig/configure tcc-0.9.26-1crosscompilefixes/configure --- tcc-0.9.26.orig/configure 2013-02-15 08:24:00.000000000 -0600 |
︙ | |||
72 73 74 75 76 77 78 | 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | - + + + + + + + + + + + + | --cpu=*) cpu=`echo $opt | cut -d '=' -f 2` ;; + --os=*) targetos=`echo $opt | cut -d '=' -f 2-` + ;; --enable-gprof) gprof="yes" ;; --enable-mingw32) mingw32="yes" ; cross_prefix="i686-pc-mingw32-" ; cpu=x86 |
︙ | |||
128 129 130 131 132 133 134 | 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | - + + + + + + + + + | + cpu="unknown" + ;; +esac + # Checking for CFLAGS if test -z "$CFLAGS"; then CFLAGS="-Wall -g -O2" |
︙ |