diff options
| author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-11-06 03:07:52 +0000 |
|---|---|---|
| committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-11-06 03:07:52 +0000 |
| commit | fc748a8bdd5e174f6da6f7c780d391cdc9c0e7b8 (patch) | |
| tree | 54f37a6644cd68e76024921d954f0c28812b1783 | |
| parent | f11a667681c6e8099700f4977c09185be1f9b9bb (diff) | |
| download | ruby-fc748a8bdd5e174f6da6f7c780d391cdc9c0e7b8.tar.gz ruby-fc748a8bdd5e174f6da6f7c780d391cdc9c0e7b8.tar.xz ruby-fc748a8bdd5e174f6da6f7c780d391cdc9c0e7b8.zip | |
* configure.in (MINIDLNOBJ): set default as dmydln.o.
Now LLVM clang seems to be able to build Ruby 1.9.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25671 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 5 |
2 files changed, 6 insertions, 4 deletions
@@ -1,3 +1,8 @@ +Fri Nov 6 12:02:32 2009 NARUSE, Yui <naruse@ruby-lang.org> + + * configure.in (MINIDLNOBJ): set default as dmydln.o. + Now LLVM clang seems to be able to build Ruby 1.9. + Fri Nov 6 09:29:32 2009 NARUSE, Yui <naruse@ruby-lang.org> * encoding.c (rb_filesystem_encindex): add fallback to diff --git a/configure.in b/configure.in index e968ccaee..4ce8a7b08 100644 --- a/configure.in +++ b/configure.in @@ -2199,7 +2199,7 @@ AC_SUBST(INSTALLDOC) if test "$rb_with_pthread" = "yes"; then THREAD_MODEL=pthread fi -MINIDLNOBJ=dln.o +MINIDLNOBJ=dmydln.o case "$target_os" in when(linux*) ;; @@ -2214,7 +2214,6 @@ case "$target_os" in ;; when(darwin*) RUBY_APPEND_OPTION(CFLAGS, -pipe) - MINIDLNOBJ=dmydln.o ;; when(human*) AC_LIBOBJ([x68.o]) @@ -2287,7 +2286,6 @@ case "$target_os" in LIBRUBY='lib$(RUBY_SO_NAME).a' LIBRUBYARG='-l$(RUBY_SO_NAME)' fi - MINIDLNOBJ=dmydln.o ;; when(hpux*) case "$YACC" in @@ -2296,7 +2294,6 @@ case "$target_os" in YACC="$YACC -Nl40000 -Nm40000" ;; esac - MINIDLNOBJ=dmydln.o ;; when(*msdosdjgpp*) FIRSTMAKEFILE=GNUmakefile:djgpp/GNUmakefile.in |
