Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Experiment: Fix 98ae20f0f5. Works for any extension using this construct, not only Thread |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | bug-98ae20f0f5 |
Files: | files | file ages | folders |
SHA3-256: |
aa4a13c15516da455950b1c1aa58568a |
User & Date: | jan.nijtmans 2021-01-15 09:47:36 |
Context
2021-01-20
| ||
10:57 | Don't use LTO for any stub libraries: It's asking for trouble when an extension is compiled with dif... Closed-Leaf check-in: d270942d10 user: jan.nijtmans tags: bug-98ae20f0f5 | |
2021-01-15
| ||
09:47 | Experiment: Fix 98ae20f0f5. Works for any... check-in: aa4a13c155 user: jan.nijtmans tags: bug-98ae20f0f5 | |
2021-01-13
| ||
10:42 | Fix [b89209f5cd]: compilation error Windows 10 / Visual Studio 2019 check-in: f398cf47de user: jan.nijtmans tags: core-8-6-branch | |
Changes
Changes to unix/Makefile.in.
︙ | ︙ | |||
1781 1782 1783 1784 1785 1786 1787 | #-------------------------------------------------------------------------- # Stub library binaries, these must be compiled for use in a shared library # even though they will be placed in a static archive #-------------------------------------------------------------------------- tclStubLib.o: $(GENERIC_DIR)/tclStubLib.c | | | | | 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 | #-------------------------------------------------------------------------- # Stub library binaries, these must be compiled for use in a shared library # even though they will be placed in a static archive #-------------------------------------------------------------------------- tclStubLib.o: $(GENERIC_DIR)/tclStubLib.c $(CC) -c $(STUB_CC_SWITCHES) -DSTATIC_BUILD -fno-lto $(GENERIC_DIR)/tclStubLib.c tclTomMathStubLib.o: $(GENERIC_DIR)/tclTomMathStubLib.c $(CC) -c $(STUB_CC_SWITCHES) -DSTATIC_BUILD -fno-lto $(GENERIC_DIR)/tclTomMathStubLib.c tclOOStubLib.o: $(GENERIC_DIR)/tclOOStubLib.c $(CC) -c $(STUB_CC_SWITCHES) -DSTATIC_BUILD -fno-lto $(GENERIC_DIR)/tclOOStubLib.c .c.o: $(CC) -c $(CC_SWITCHES) $< #-------------------------------------------------------------------------- # Bundled Package targets #-------------------------------------------------------------------------- |
︙ | ︙ |