diff options
author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-15 17:20:17 +0000 |
---|---|---|
committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-15 17:20:17 +0000 |
commit | d8099eefc870708c22acd8e87edd888d7a9a08c4 (patch) | |
tree | fc4b2f9bc9d9c7cb862c7344c4fdbcc53ae3fbcb /bcc32 | |
parent | ff043793bc4bc1d0cdfb10eb545f2e934b68da81 (diff) |
* bcc32/Makefile.sub: should warn suspicious pointer conversion.
* bcc32/setup.mak: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@5717 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bcc32')
-rw-r--r-- | bcc32/Makefile.sub | 2 | ||||
-rw-r--r-- | bcc32/setup.mak | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index 09f5a029f2..da62cf7161 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -95,7 +95,7 @@ libdir = $(exec_prefix)/lib DESTDIR = $(prefix) !endif !ifndef CFLAGS -CFLAGS = -q $(DEBUGFLAGS) $(OPTFLAGS) $(PROCESSOR_FLAG) -w- +CFLAGS = -q $(DEBUGFLAGS) $(OPTFLAGS) $(PROCESSOR_FLAG) -w- -wsus !endif !ifndef CPPFLAGS CPPFLAGS = -I. -I$(srcdir) -I$(srcdir)missing diff --git a/bcc32/setup.mak b/bcc32/setup.mak index c81eaf2020..8880360e55 100644 --- a/bcc32/setup.mak +++ b/bcc32/setup.mak @@ -78,7 +78,7 @@ PROCESSOR_LEVEL = $(PROCESSOR_LEVEL) \# RUBY_INSTALL_NAME = ruby \# RUBY_SO_NAME = $$(RT)-$$(RUBY_INSTALL_NAME)$$(MAJOR)$$(MINOR) \# prefix = /usr -\# CFLAGS = -q $$(DEBUGFLAGS) $$(OPTFLAGS) $$(PROCESSOR_FLAG) -w- +\# CFLAGS = -q $$(DEBUGFLAGS) $$(OPTFLAGS) $$(PROCESSOR_FLAG) -w- -wsus \# CPPFLAGS = -I. -I$$(srcdir) -I$$(srcdir)missing -DLIBRUBY_SO=\"$$(LIBRUBY_SO)\" \# STACK = 0x2000000 \# LDFLAGS = -S:$$(STACK) |