On Fri, Dec 11, 2009 at 04:08, Sofia Tahseen <[email protected]> wrote: > You are so right, Joel... I corrected my .so and now I could build the > chrome browser ...finally!!
> I copied the whole /src/out/Release directory While it's not important, that is unnecessary. This directory contains all of the object code, you only need the final binary. Copying the following list of files should be sufficient, and save you some time: chrome chrome.pak libffmpegsumo.so resources/ locales/ chrome-wrapper > to my jaunty on the BeagleBoard(256MB RAM). I try to launch chrome through: > ./chrome > It starts up chrome, and then immediately kills chrome. I get an Illegal > Instruction. Jaunty targets the ARMv5 ISA, and you are building Chromium for ARMv7 (by including the armv7=1 flag). I suspect you need to do one of the following (not both): - run Karmic, which is built for ARMv7, on your BeagleBoard - omit the armv7=1 flag when building Chromium As a data point: I regularly build and run Chromium targeting thumb2 (armv7=1 arm_thumb=1) on my BeagleBoard (RevB, 128MB RAM) running Ubuntu Karmic. It starts and can browse in multiple tabs. Joel -- Chromium Developers mailing list: [email protected] View archives, change email options, or unsubscribe: http://groups.google.com/group/chromium-dev
