tinycc/win32
grischka 536ed76d5a tccgen/win32: let __declspec(dllimport) imply extern
Also, retain storage qualifiers in type_decl, in particular
also for function pointers.  This allows to get rid of this
very early hack in decl()
    type.t |= (btype.t & VT_STATIC); /* Retain "static". */
which was to fix the case of
    int main() { static int (*foo)(); ...

Also:
- missing __declspec(dllimport) is an error now
- except if the symbol is "_imp__symbol"
- demonstrate export/import of data in the dll example (while
  'extern' isn't strictly required with dllimport anymore)
- new function 'patch_storage()' replaces 'weaken_symbol()'
  and 'apply_visibility()'
- new function 'update_storage()' applies storage attributes
  to Elf symbols.
- put_extern_sym/2 accepts new pseudo section SECTION_COMMON
- add -Wl,-export-all-symbols as alias for -rdynamic
- add -Wl,-subsystem=windows for mingw compatibility
- redefinition of 'sym' error for initialized global data
2017-04-04 08:34:52 +02:00
..
examples tccgen/win32: let __declspec(dllimport) imply extern 2017-04-04 08:34:52 +02:00
include makefile: unify cross with native builds 2017-02-25 12:51:04 +01:00
lib tcc: re-enable correct option -r support 2017-02-20 18:58:08 +01:00
build-tcc.bat cross-compilers: allow individual configuration 2017-02-23 08:41:57 +01:00
Makefile Cygwin Makefile was to aggresive to remove entire lib/ 2017-02-24 22:51:10 +01:00
tcc-win32.txt tcctools.c: integrate tiny_libmaker/_impdef 2017-02-18 09:55:34 +01:00