diff options
author | Kevin B Kenny <kennykb@acm.org> | 2011-03-05 16:53:29 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2011-03-05 16:53:29 (GMT) |
commit | e342f953c3661d6401a14dba8f85d4cfb48112a2 (patch) | |
tree | 9bee2bc09abad15c82d9dd22adbbe047b495cea4 /win | |
parent | bc47f3260fa46a560c1a2e7e1a0891e5493cda50 (diff) | |
parent | e5eafc26411072617eb6671161e84ddfbbf99bba (diff) | |
download | tcl-e342f953c3661d6401a14dba8f85d4cfb48112a2.zip tcl-e342f953c3661d6401a14dba8f85d4cfb48112a2.tar.gz tcl-e342f953c3661d6401a14dba8f85d4cfb48112a2.tar.bz2 |
<verbatim>
* generic/tclAssembly.c (new file):
* generic/tclBasic.c (Tcl_CreateInterp):
* generic/tclInt.h:
* tests/assemble.test (new file):
* unix/Makefile.in:
* win/Makefile.in:
* win/makefile.vc: Merged dogeen-assembler-branch into HEAD.
Since all functional changes are in the tcl::unsupported namespace,
there's no reason to sequester this code on a separate branch.
</verbatim>
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 1 | ||||
-rw-r--r-- | win/makefile.vc | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index b47a7e1..eaf40d1 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -211,6 +211,7 @@ GENERIC_OBJS = \ regfree.$(OBJEXT) \ regerror.$(OBJEXT) \ tclAlloc.$(OBJEXT) \ + tclAssembly.$(OBJEXT) \ tclAsync.$(OBJEXT) \ tclBasic.$(OBJEXT) \ tclBinary.$(OBJEXT) \ diff --git a/win/makefile.vc b/win/makefile.vc index f04e193..9cf4769 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -247,6 +247,7 @@ COREOBJS = \ $(TMP_DIR)\regexec.obj \ $(TMP_DIR)\regfree.obj \ $(TMP_DIR)\tclAlloc.obj \ + $(TMP_DIR)\tclAssembly.obj \ $(TMP_DIR)\tclAsync.obj \ $(TMP_DIR)\tclBasic.obj \ $(TMP_DIR)\tclBinary.obj \ |