Hello,
I spend a lot of time trying to compile luxrender in another workstation.
I got a problem with "Yacc'ing" and "lexing"
It failled and I got the error :
1>bison: m4: Invalid argument
(same with lex after fixing this one)
I solve it by changing two files : (on windows\support\bin)
bison_on_path.bat
flex_on_path.bat
I inverted
set PATH=%PATH%;%LUX_WINDOWS_BUILD_ROOT%\support\bin\
by
set PATH=%LUX_WINDOWS_BUILD_ROOT%\support\bin\;%PATH%
explication : Probably I could have another version of bison on my path for another tool. When MSVC want to launch bison it found the first one on the path and that's the wrong one.
by setting LUX_ROOT at first i'm sure to have the good one.
I suggest to patch the repository
Second error
"Error spawning 'cmd.exe'"
corrected with this page for example : http://social.msdn.microsoft.com/Forums ... b047d9376/
Must be done on each workstation ...
