Skip to content

Commit

Permalink
Remove -property switch
Browse files Browse the repository at this point in the history
  • Loading branch information
9rnsr committed Jul 15, 2013
1 parent 30356d6 commit adc1533
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion posix.mak
Expand Up @@ -118,7 +118,7 @@ ifneq (,$(filter cc% gcc% clang% icc% egcc%, $(CC)))
endif

# Set DFLAGS
DFLAGS := -I$(DRUNTIME_PATH)/import $(DMDEXTRAFLAGS) -w -d -property $(MODEL_FLAG) $(PIC)
DFLAGS := -I$(DRUNTIME_PATH)/import $(DMDEXTRAFLAGS) -w -d $(MODEL_FLAG) $(PIC)
ifeq ($(BUILD),debug)
DFLAGS += -g -debug
else
Expand Down
4 changes: 2 additions & 2 deletions win32.mak
Expand Up @@ -38,13 +38,13 @@ CFLAGS=-mn -6 -r

## Flags for dmd D compiler

DFLAGS=-O -release -w -d -property
DFLAGS=-O -release -w -d
#DFLAGS=-unittest -g -d
#DFLAGS=-unittest -cov -g -d

## Flags for compiling unittests

UDFLAGS=-O -w -d -property
UDFLAGS=-O -w -d

## C compiler

Expand Down
4 changes: 2 additions & 2 deletions win64.mak
Expand Up @@ -37,13 +37,13 @@ CFLAGS=/O2 /nologo /I"$(VCDIR)\INCLUDE" /I"$(SDKDIR)\Include"

## Flags for dmd D compiler

DFLAGS=-m$(MODEL) -O -release -w -d -property
DFLAGS=-m$(MODEL) -O -release -w -d
#DFLAGS=-m$(MODEL) -unittest -g -d
#DFLAGS=-m$(MODEL) -unittest -cov -g -d

## Flags for compiling unittests

UDFLAGS=-g -m$(MODEL) -O -w -d -property
UDFLAGS=-g -m$(MODEL) -O -w -d

## C compiler, linker, librarian

Expand Down

0 comments on commit adc1533

Please sign in to comment.