Home > readme 
 en fr de es it nl pl pt pt_BR mk sq ca hu cs tr ar fa id ko ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration  
Documentation
History
 
Warning! This page is not up to date.  See english version 
Đọc Tôi

Chào mừng đến với Gambas!

Gambas Là một môi trường lập trình đồ họa miễn phí dựa trên cơ sở của BASIC.Nó cũng có sự kết hợp của Visual Basic và Java.

Thông tin bổ sung tại http://gambas.sourceforge.net

Chú ý: Quan trọng

Khi tải Gambas, và biên dịch nó,hãy đọc những thông tin sau một cách cẩn thận!

To BiênDịch Gambas, you must install the following libraries on your system :

Components Libraries
gb.compress.bzlib2 libbz2.so
gb.compress.zlib libz.so
gb.corba libACE.so libomniORB4.so libomniDynamic4.so
gb.crypt libcrypt.so
gb.db.firebird libibpp.so libfbclient.so
gb.db.mysql libmysqlclient.so libz.so
gb.db.odbc libodbc.so
gb.db.postgresql libpq.so
gb.db.sqlite2 libsqlite.so
gb.db.sqlite libsqlite3.so
gb.gtk All GTK+ libraries
gb.ldap libldap.so
gb.net -
gb.net.curl libcurl.so
gb.opengl libGL.so libGLU.so
gb.pcre libpcre.so
gb.qt libqt-mt.so.3
gb.qt.kde All KDE libraries
gb.sdl libSDL.so
gb.sdl.sound libSDL.so libSDL_mixer.so
gb.sdl.image libSDL.so libSDL_image.so libSDL_gfx.so libSDL_ttf.so
gb.sdl.opengl libSDL.so libGL.so libGLU.so
gb.v4l libjpeg.so libpng.so Video4Linux >= 2.0
gb.xml libxml-2.0
gb.xml.xslt libxslt

And do not forget to install all related development packages!

Try to always use a recent version of these libraries.

You must BiênDịch gb.qt and gb.qt.ext components to have a working development environment.

Qt 3.2 is now required because of one Qt function that was missing in older versions of Qt. Gambas will BiênDịch with Qt 3.1, but the function Picture.Copy() will fail in some case. Gambas does not BiênDịch with previous versions of Qt.

You must have the right to write to /tmp, otherwise Gambas will not work.

This package was done with the following versions of GNU tools:

Each sub-directory of this source package is actually independent. You can configure, make and install each of them independently.

How To BiênDịch And Install Gambas?

Check installation

First, check that you installed all the needed libraries, and especially all the development packages

Source package configuration

When you are sure that everything is installed, type the following magic sentences in a shell.

'#' represents your shell prompt, and '...' are the messages printed during the configuration and compilation.

This command analyzes the system and configure the package:

# ./configure -C
...

If a library or a development package is missing, then you will be warned that some components are disabled. You must read all the configure output to find the lines beginning with "warning" to know what is missing.

There are more 'configure' specific explanations in the INSTALL file. I invite you to read them.

Compilation

If everything is configured without error, then run this command to BiênDịch the program:

# make
...

Installation

If everything compiles without error, then enter this command to install everything:

You must be root to install Gambas on your system.

# su -c "make install"
Password: 
...

Troubleshooting

If you did several successive compilations, and if something fails during all this process, you can try to type the following command before running ./configure again:

# ./reconf

If it does not work, I need to know what happened exactly. To do so, type the following command :

# ( ./configure; make; make install ) > output.txt 2>&1

And send me the file "output.txt" by mail, with every other detail about your computer and your distribution you find useful.

Running Gambas

If everything was fine, type "gambas2" to run the development environment.

Enjoy it !