aboutsummaryrefslogtreecommitdiff
path: root/Changelog
diff options
context:
space:
mode:
authorgrischka <grischka>2017-02-18 09:51:23 +0100
committergrischka <grischka>2017-02-18 09:51:23 +0100
commit096125d963400951e0f160ced86416ef8c9c98b0 (patch)
treec0fb4737ba1cf421032e28925f9aef6c140d97aa /Changelog
parent39b2afeb7c5c7de9a6c6457b5a4ec102d4e364b1 (diff)
downloadtinycc-096125d963400951e0f160ced86416ef8c9c98b0.tar.gz
tinycc-096125d963400951e0f160ced86416ef8c9c98b0.tar.bz2
win32: adjust new unicode support
- lib/Makefile: add (win)crt1_w.o - crt1.c/_runtmain: return to tcc & only use for UNICODE (because it might be not 100% reliable with for example wildcards (tcc *.c -run ...) - tccrun.c/tccpe.c: load -run startup_code only if called from tcc_run(). Otherwise main may not be defined. See libtcc_test.c - tests2/Makefile: pass extra options in FLAGS to allow overriding TCC Also: - tccpe.c: support weak attribute. (I first tried to solve the problem above by using it but then didn't)
Diffstat (limited to 'Changelog')
-rw-r--r--Changelog1
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog b/Changelog
index 6928536..a8928fc 100644
--- a/Changelog
+++ b/Changelog
@@ -17,6 +17,7 @@ Platforms:
- provide a runtime library for ARM (Thomas Preud'homme)
- many x86-64 ABI fixes incl. XMM register passing and tests (James Lyon)
- ABI tests with native compiler using libtcc (James Lyon)
+- UNICODE startup code supports wmain and wWinMain (YX Hao)
Features:
- VLA (variable length array) improved (James Lyon, Pip Cet)