If you get errors like these when building with scons: 2 g++ -o shell /home/jamessan/src/chromium/src/v8/obj/sample/shell/release/shell.o -L. -L/home/jamessan/src/chromium/src/v8 -lv8 -lpthread 3 /home/jamessan/src/chromium/src/v8/obj/sample/shell/release/shell.o: In function `ReadFile(char const*)': 4 shell.cc:(.text+0xa1): undefined reference to `operator new[](unsigned int)' 5 shell.cc:(.text+0x10c): undefined reference to `operator delete[](void*)' [and many more follow]
The correct fix is to rm -rf v8/obj and try building again. (The change was to make it so all your temporary build info goes into the Hammer directory, so hopefully in the future all temporary build objects will be easy to remove and you won't need to poke around inside v8 directories etc.) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Chromium-dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/chromium-dev?hl=en -~----------~----~----~----~------~----~------~--~---
