3

I'm getting the following error trying to compile v8 on OSX Lion:

sh-3.2# scons

scons: *** No SConstruct file found.
File "/usr/local/lib/scons-2.3.0/SCons/Script/Main.py", line 905, in _main

I've installed scons using Homebrew.

Moaz Saeed
  • 1,006
  • 3
  • 10
  • 23
MaiaVictor
  • 51,090
  • 44
  • 144
  • 286
  • Either you havent defined a SConstruct or it cant be found. This answer should help: http://stackoverflow.com/a/17185787/1158895 – Brady Jun 29 '13 at 09:00
  • possible duplicate of [SCons- \*\*\* No SConstruct file found](http://stackoverflow.com/questions/17182799/scons-no-sconstruct-file-found) – Brady Jun 29 '13 at 12:45

2 Answers2

0

Either cd to the directory that contains the SConstruct file, or use the -f flag to tell scons where it is. It works like "make", which needs to find a "Makefile" or it can't build anything.

DrChandra
  • 181
  • 1
  • 6
0

AllJoyn is built using xcodebuild for OS X. Using scons directly is not supported.

Ry Jones
  • 1,085
  • 1
  • 11
  • 25