Difference between revisions of "Lua"

From CBLFS
Jump to navigationJump to search
m (Non-Multilib)
Line 20: Line 20:
  
 
  make INSTALL_TOP=/usr install
 
  make INSTALL_TOP=/usr install
 +
cp etc/lua.pc /usr/lib/pkgconfig/
  
 
== Multilib ==
 
== Multilib ==

Revision as of 14:41, 5 October 2008

Download Source: http://www.lua.org/ftp/lua-5.1.4.tar.gz

Introduction to Lua

Project Homepage: Unknown

Dependencies

Non-Multilib

Compile the package:

make linux

Install the package

make INSTALL_TOP=/usr install
cp etc/lua.pc /usr/lib/pkgconfig/

Multilib

32Bit

Compile the package:

make CC="gcc ${BUILD32}" linux

Install the package

make INSTALL_TOP=/usr install

N32

Compile the package:

make CC="gcc ${BUILDN32}" linux

Install the package

make INSTALL_TOP=/usr INSTALL_LIB=/usr/lib32 install

64Bit

Compile the package:

make CC="gcc ${BUILD64}" linux

Install the package

make INSTALL_TOP=/usr INSTALL_LIB=/usr/lib64 install