Differences From Artifact [f84e816ad132fb6d]:
- File
src/Makefile
-
2015-05-05 06:49:05
- part of checkin
[9b639cf2d6]
on branch trunk
- Working version for update to 2.067.
The problem was __gshared. Replacing it with TLS fixed the issue. Remaining problem is that "hack.d"'s CloseHandle hack is not working anymore.
(user: kinaba) [annotate]
-
2015-05-05 06:49:05
- part of checkin
[9b639cf2d6]
on branch trunk
- Working version for update to 2.067.
To Artifact [7983b2b25d33a3bc]:
- File
src/Makefile
- 2015-05-05 07:12:59 - part of checkin [365c019326] on branch trunk - Updated README for release. (user: kinaba) [annotate]
1 1 SRCFILES = qbga32.def dllmain.d util.d windll.d qbga32.d bga_melter.d qbga_gui.d
2 2 BZ2FILES = libbz2\bzlib.d libbz2\libbz2.lib
3 3 DEPLIBS = win32\windef.d
4 -OPTS = -release -shared
4 +OPTS = -release -shared -m32 -inline -O
5 5
6 6 QBga32.dll: $(SRCFILES) $(BZ2FILES) Makefile
7 7 dmd.exe $(OPTS) -ofQBga32.dll $(SRCFILES) $(BZ2FILES) $(DEPLIBS)
8 8
9 9 testexe.exe: testexe.d
10 - dmd.exe -gc -oftestexe.exe testexe.d
10 + dmd.exe -oftestexe.exe testexe.d
11 11
12 12 clean:
13 - del *.map
14 13 del *.obj