diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-04-02 10:28:53 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-04-02 10:28:53 +0000 |
| commit | cfd8f256bd90884af4f1fb8764c605361c3ea3b1 (patch) | |
| tree | 4102b65bde4e1192fe36c3decc7f68beb7401d3f | |
| parent | a8bdaff118fc6d38a9526703a9b897f63f055460 (diff) | |
| download | ruby-cfd8f256bd90884af4f1fb8764c605361c3ea3b1.tar.gz ruby-cfd8f256bd90884af4f1fb8764c605361c3ea3b1.tar.xz ruby-cfd8f256bd90884af4f1fb8764c605361c3ea3b1.zip | |
* bcc32/Makefile.sub (OUTFLAG): needed for static-linked-ext.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6078 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | bcc32/Makefile.sub | 4 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Fri Apr 2 19:28:48 2004 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * bcc32/Makefile.sub (OUTFLAG): needed for static-linked-ext. + Fri Apr 2 18:00:05 2004 Nobuyoshi Nakada <nobu@ruby-lang.org> * ext/extmk.rb (extmake): extract necessary variables for static link diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index 7c9770c98..7f8ac6059 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -111,6 +111,8 @@ TESTS = !ifndef RDOCTARGET RDOCTARGET = install-doc !endif + +OUTFLAG = -o !ifndef CFLAGS CFLAGS = -q $(DEBUGFLAGS) $(OPTFLAGS) $(PROCESSOR_FLAG) -w- -wsus -wcpt -wdup -wext -wrng -wrpt -wzdi !endif @@ -353,7 +355,7 @@ s,@LIBRUBYARG_SHARED@,$$(LIBRUBY),;t t s,@SOLIBS@,$(SOLIBS),;t t s,@DLDLIBS@,$(DLDLIBS),;t t s,@ENABLE_SHARED@,yes,;t t -s,@OUTFLAG@,-o,;t t +s,@OUTFLAG@,$(OUTFLAG),;t t s,@CPPOUTFILE@,,;t t s,@LIBPATHFLAG@, -L"%s",;t t s,@RPATHFLAG@,,;t t |
