This is a guide to build all the Lua, IM, CD and IUP libraries in Linux. Notice that you may not use all the libraries, although this guide will show you how to build all of them. You may then choose to build specific libraries.
The Linux used as reference is the Ubuntu distribution.
To build the libraries you will have to download the development version of some packages installed on your system. Although the run time version of some of these packages are already installed, the development versions are usually not. The packages described here are for Ubuntu, but you will be able to identify them for other systems as well.
To build Lua you will need:
libreadline5-dev
To build IM you will need:
g++
To build CD you will need:
libfreetype6-dev libx11-dev libxpm-dev libxmu-dev libxft-dev (for the XRender driver, OPTIONAL) libgtk2.0-dev (for the GDK driver)
To build IUP you will need:
libgtk2.0-dev (for the GTK driver) [already installed for CD] libmotif-dev and x11proto-print-dev (for the Motif driver, OPTIONAL) libgl1-mesa-dev and libglu1-mesa-dev (for the IupGLCanvas)
To install them you can use the Synaptic Package Manager and select the packages, or can use the command line and type:
sudo apt-get install package_name
Download the "xxx-X.X_Sources.tar.gz" package from the "Docs and Sources" directory for the version you want to build. Here are links for the Files section in Source Forge:
Lua -
http://sourceforge.net/projects/luabinaries/files/
IM -
http://sourceforge.net/projects/imtoolkit/files/
CD -
http://sourceforge.net/projects/canvasdraw/files/
IUP -
http://sourceforge.net/projects/iup/files/
To extract the files use the tar command at a common directory, for example:
mkdir -p xxxx cd xxxx [copy the downloaded files, to the xxxx directory] tar -xpvzf iup-3.2_Sources.tar.gz tar -xpvzf cd-5.4_Sources.tar.gz tar -xpvzf im-3.6.2_Sources.tar.gz tar -xpvzf lua5_1_4_Sources.tar.gz [optional, see note bellow]
If you are going to build all the libraries, the makefiles and projects expect the following directory tree:
/xxxx/ cd/ im/ iup/ lua5.1/ [optional, see note bellow]
If you unpack all the source packages in the same directory, that structure will be automatically created.
Although we use Lua from LuaBinaries, any Lua installation can also be used. In Ubuntu, the Lua run time package is:
lua5.1
And the Lua development package is:
liblua5.1-0-dev
To use them, instead of using the directory "/xxxx/lua5.1" described above, you will have to define some environment variables before building IM, CD and IUP:
export LUA_SUFFIX= export LUA_INC=/usr/include/lua5.1
As a general rule (excluding system dependencies): IUP depends on CD and IM, and CD depends on IM. So start by build IM, then CD, then IUP.
To start building go the the "src" directory and type "make". In IUP there are many "srcxxx" folders, so go to the up directory "iup" and type "make" that all the sub folders will be built. For example:
cd im/src make cd ../.. cd cd/src make cd ../.. cd iup make cd ..
TIP: Instead of building all the libraries, try building only the libraries you are going to use. The provided makefiles will build all the libraries, but take a look inside them and you will figure out how to build just one library.
Instead of building from sources you can try to use the pre-compiled binaries. Usually they were build in the latest Ubuntu versions for 32 and 64 bits. The packages are located in the "Linux Libraries" directory under the Files section in Source Forge, with "xxx-X.X_Linux26g4_lib.tar.gz" and "xxx-X.X_Linux26g4_64_lib.tar.gz" names.
Do not extract different pre-compiled binaries in the same directory, create a subdirectory for each one, for example:
mkdir iup cd iup tar -xpvzf ../iup-3.2_Linux26g4_lib.tar.gz cd .. mkdir cd cd cd tar -xpvzf ../cd-5.4_Linux26g4_lib.tar.gz cd .. mkdir im cd im tar -xpvzf ../im-3.6.2_Linux26g4_lib.tar.gz cd ..
For the installation instructions bellow, remove the "lib/Linux26g4" from the following examples if you are using the pre-compiled binaries.
After building you can copy the libraries files to the system directory. If you are inside the main directory, to install the run time libraries you can type, for example:
sudo cp -f iup/lib/Linux26g4/*.so /usr/lib [script version: install ] sudo cp -f cd/lib/Linux26g4/*.so /usr/lib sudo cp -f im/lib/Linux26g4/*.so /usr/lib
To install the development files, then do:
sudo mkdir -p /usr/include/iup [script version: install_dev ] sudo cp -f iup/include/*.h /usr/include/iup sudo cp -f iup/lib/Linux26g4/*.a /usr/lib sudo mkdir -p /usr/include/cd sudo cp -f cd/include/*.h /usr/include/cd sudo cp -f cd/lib/Linux26g4/*.a /usr/lib sudo mkdir -p /usr/include/im sudo cp -fR im/include/*.h /usr/include/im sudo cp -f im/lib/Linux26g4/*.a /usr/lib
Then in your makefile use -Iiup -Icd -Iim for includes. There is no need to specify the libraries directory with -L. Development files are only necessary if you are going to compile an application or library in C/C++ that uses there libraries. To just run Lua scripts they are not necessary.
If you don't want to copy the run time libraries to your system directory, you can use them from build directory. You will need to add the run time libraries folders to the LD_LIBRARY_PATH, for example:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/xxxx/iup/lib/Linux26g4:/xxxx/cd/lib/Linux26g4:/xxxx/im/lib/Linux26g4
And in your makefile will will also need to specify those paths when linking using -L/xxxx/iup/lib/Linux26g4, and for compiling use -I/xxxx/iup/include.
Lua modules in Ubuntu are installed in the "/usr/lib/lua/5.1" directory. So to be able to use the Lua "require" with IUP, CD and IM you must create symbolic links inside that directory.
sudo mkdir -p /usr/lib/lua/5.1 [script version: config_lua_module ] cd /usr/lib/lua/5.1 sudo ln -fs /usr/lib/libiuplua51.so iuplua.so sudo ln -fs /usr/lib/libiupluacontrols51.so iupluacontrols.so ...
Using those links you do not need any extra configuration.
If you use the alternative installation directory, and you also do NOT use the LuaBinaries installation, then you must set the LUA_CPATH environment variable:
export LUA_CPATH=./\?.so\;./lib\?.so\;./lib\?51.so\;