lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Shmuel Zeigerman wrote:
> Trying to build LuaJIT according the instructions, and it seems the
> preprocessor doesn't like the lines like that:
> # 1 "buildvm_x86.dasc"
> 
> ...\luajit-2.0\src\buildvm_x64win.h(12) : error C2019: expected
> preprocessor directive, found '1'

That's why the preprocessed files in the releases and in the git
repository do not contain such lines. Apparently your source tree
is not clean (probably using it from both Linux and Windows). Try
'make distclean' or even 'make cleaner'.

--Mike