Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 745853f

Browse files
committed
temporarily compile with -dip25 instead of -dip1000 to avoid https://issues.dlang.org/show_bug.cgi?id=17432
1 parent 33b0465 commit 745853f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

posix.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ ifeq (solaris,$(OS))
5353
endif
5454

5555
# Set DFLAGS
56-
UDFLAGS:=-conf= -Isrc -Iimport -w -dip1000 $(MODEL_FLAG) $(OPTIONAL_PIC) $(OPTIONAL_COVERAGE)
56+
UDFLAGS:=-conf= -Isrc -Iimport -w -dip25 $(MODEL_FLAG) $(OPTIONAL_PIC) $(OPTIONAL_COVERAGE)
5757
ifeq ($(BUILD),debug)
5858
UDFLAGS += -g -debug
5959
DFLAGS:=$(UDFLAGS)

win32.mak

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ CC=dmc
99
DOCDIR=doc
1010
IMPDIR=import
1111

12-
DFLAGS=-m$(MODEL) -conf= -O -release -dip1000 -inline -w -Isrc -Iimport
13-
UDFLAGS=-m$(MODEL) -conf= -O -release -dip1000 -w -Isrc -Iimport
12+
DFLAGS=-m$(MODEL) -conf= -O -release -dip25 -inline -w -Isrc -Iimport
13+
UDFLAGS=-m$(MODEL) -conf= -O -release -dip25 -w -Isrc -Iimport
1414
DDOCFLAGS=-conf= -c -w -o- -Isrc -Iimport -version=CoreDdoc
1515

1616
CFLAGS=

win64.mak

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ IMPDIR=import
1717

1818
MAKE=make
1919

20-
DFLAGS=-m$(MODEL) -conf= -O -release -dip1000 -inline -w -Isrc -Iimport
21-
UDFLAGS=-m$(MODEL) -conf= -O -release -dip1000 -w -Isrc -Iimport
20+
DFLAGS=-m$(MODEL) -conf= -O -release -dip25 -inline -w -Isrc -Iimport
21+
UDFLAGS=-m$(MODEL) -conf= -O -release -dip25 -w -Isrc -Iimport
2222
DDOCFLAGS=-conf= -c -w -o- -Isrc -Iimport -version=CoreDdoc
2323

2424
#CFLAGS=/O2 /I"$(VCDIR)"\INCLUDE /I"$(SDKDIR)"\Include

0 commit comments

Comments
 (0)