Navigation Menu

Skip to content

Commit

Permalink
travis: disable optimization for clang
Browse files Browse the repository at this point in the history
Because build resouce isn't enough on Travis.
  • Loading branch information
kou committed Aug 12, 2012
1 parent 58590f0 commit 37fe9e7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tools/travis-before-script.sh
Expand Up @@ -7,4 +7,9 @@ rvm use 1.9.3

./autogen.sh

./configure --with-ruby19
configure_args=""
if [ "$CC" = "clang" ]; then
configure_args="${configure_args} --with-debug"
fi

./configure --with-ruby19 ${configure_args}

0 comments on commit 37fe9e7

Please sign in to comment.