Hi Why,
since I have an iBook G4 I moved to my linux box for some shoes coding and
I've tried compiling it on a Debian.
directly from github rake gave me this message:
rake aborted!
undefined method `to_str' for
["req/sqlite3/ext/sqlite3_api/sqlite3_api.so"]:Rake::FileList
so I've patched the Rakefile in this way:
Line 95:
- cp FileList["#{xdir}/*.dll"], "dist/ruby/lib/#{RUBY_PLATFORM}"
+ FileList["#{xdir}/*.dll"].each { |dlllib| cp dlllib,
"dist/ruby/lib/#{RUBY_PLATFORM}"}
Line 100:
- cp FileList["#{xdir}/*.so"], "dist/ruby/lib/#{RUBY_PLATFORM}"
+ FileList["#{xdir}/*.so"].each { |solib| cp solib,
"dist/ruby/lib/#{RUBY_PLATFORM}"}
obviously the guilty line was the 100th, but I've also changed the win's
version.
Hope it helps.
As for PPC building I'm still trying to help.
Emanuel