Comment #3 on issue 2010 by [email protected]: platform-linux.cc build attempt on Solaris 10
http://code.google.com/p/v8/issues/detail?id=2010

The origin of the issue is:

./build/gyp/pylib/gyp/common.py

def GetFlavor(params):
"""Returns |params.flavor| if it's set, the system's default flavor else."""
  flavors = {
    'cygwin': 'win',
    'win32': 'win',
    'darwin': 'mac',
    'sunos5': 'solaris',
    'freebsd7': 'freebsd',
    'freebsd8': 'freebsd',
  }
  flavor = flavors.get(sys.platform, 'linux')
  return params.get('flavor', flavor)

For FreeBSD, the port has it patched:

http://www.freebsd.org/cgi/cvsweb.cgi/ports/lang/v8/

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to