text
When you just can’t take seeing another “kernel: 4gb seg fixup, process ruby”
blog comments powered by Disqus
and nothing else seems to work. You’ve already tried:
- http://ericmason.net/2008/09/amazon-ec2-and-4gb-seg-fixup/
- http://groups.google.com/group/emm-ruby/browse_thread/thread/1b9beffe8fa694a7
etc…
mv /usr/bin/gcc /usr/bin/gcc.orig mv /usr/bin/g++ /usr/bin/g++.orig echo '#!/bin/sh' > /usr/bin/gcc echo '#!/bin/sh' > /usr/bin/g++ echo 'exec gcc.orig -mno-tls-direct-seg-refs $@' >> /usr/bin/gcc echo 'exec g++.orig -mno-tls-direct-seg-refs $@' >> /usr/bin/g++ chmod a+x /usr/bin/gcc chmod a+x /usr/bin/g++
Comments