¼òµ¥µÄlinux¶¯Ì¬¼ÓÔØ
==================ÕâÊǶ¯Ì¬¿âte.cppÎļþ
#include <stdio.h>
#include <string.h>
//ÕâÒ»¾äÒ»¶¨ÒªÓÐ,ÕâÊǵ¼³ö¸Ãº¯Êý
extern "C" void add();
void add()
{
printf("@hk.%s(%d): This is add function! \n", __FILE__, __LINE__);
}
g++ -fPIC -shared -o ./libte.so ./te.cpp
==================ÕâÊǵ÷Óö¯Ì¬¿âµÄmain.cppÎļþ
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <dlfcn.h> /* ±ØÐë¼ÓÕâ¸öÍ·Îļþ */
#include <assert.h>
typedef void (*add_t)();
int main(int argc, char *argv[])
{
void *handle = NULL;
add_t add;
handle = dlopen("./libte.so", RTLD_LAZY);
if (handle == NULL)
{
printf("@hk.%s(%d): The share library load fail!\n", __FILE__, __LINE__);
return -1;
}
add = (add_t)dlsym(handle, "add");
if (add == NULL)
{
printf("@hk.%s(%d): Load function symbol fail!\n", __FILE__, __LINE__);
}
add();
dlclose(handle);
return 0;
}
g++ -o main main.cpp -ldl
Ïà¹ØÎĵµ£º
1. ÏÂÔØÎļþ
JDK jdk-1_5_0-linux-i586-rpm.bin £¨http://java.sun.com£©
eclipse eclipse-SDK-3.2-linux-gtk.tar.gz £¨http://www.eclipse.org£©
CDT org.eclipse.cdt-3.1.2-linux.x86.tar.gz £¨http://www.ecl ......
×÷Õß: ÈýÊ®¶øÁ¢
ʱ¼ä£º2009Äê11ÔÂ03ÈÕ 9:52:27
Çë×ðÖØÔ´´×÷Æ·¡£×ªÔØÇë±£³ÖÎÄÕÂÍêÕûÐÔ,²¢ÒÔ³¬Á´½ÓÐÎʽעÃ÷Ôʼ×÷Õß“inthirties£¨ÈýÊ®¶øÁ¢£©”ºÍ³ö´¦”http://blog.csdn.net/inthirties/archive/2009/11/03/4761783.aspx”,ÉîÈëÌÖÂÛ¿ÉÒÔÁªÏµinthirties@gmail.com¡£
½ñÌìÀ´µ½¹«Ë¾£¬ÓÐС»ï× ......
ǰһ¶Îʱ¼ä×ö¹ýÒ»¸öÔÚLinuxϱàдµÄQt³ÌÐò£¬Ã»À´µÃ¼°×ܽᣬÏÖÔÚ×ܽáÒ»ÏÂLinuxÏ¿ª·¢µÄÏêϸ²½Öè¡£²»¹ýÏÖÔÚ·¢ÏÖʹÓÃEclipse»òÕßQt CreatorÒª±ÈÖ±½ÓÓÃVIM±à³Ì¿ì½Ý¶àÁË£¬ÒÔºóÔÚѧϰQtµÄ¹ý³ÌÖпÉÄܾͲ»Ö±½ÓÔÚLinuxϱàÁË£¬ÏÈÔÚWinxpϱàÁËÔÙÒÆÖ²°É¡£ ÈÎÎñ£ºÔÚRedhatϵͳÏ´´½¨ºÍÏÔʾһ¸ö¼òµ¥µÄ´°¿Ú£¬Ê¹ÓñêÇ©ÏÔʾ×Ö·û´®¡°Hello ......
ת×Ôhttp://www.diybl.com/course/6_system/linux/Linuxjs/200876/130723.html
Linux»ù´¡
1¡¢¡¶LinuxÓëUnix Shell ±à³ÌÖ¸ÄÏ¡·
CÓïÑÔ»ù´¡
1¡¢¡¶C Primer Plus£¬5th Edition¡·¡¾ÃÀ¡¿Stephen PrataÖø
2¡¢¡¶The C Programming Language, 2nd Edition¡·¡¾ÃÀ¡¿Brian W. Kernighan David M. Rithie£¨K & R£©Öø
3¡¢ ......
ǰ¶Îʱ¼äΪÁ˽â¾öÒ»¸ö´Ó128MÉý¼¶µ½256MµÄDDRÎÊÌ⣬¸ãµÄÊǽ¹Í·Àö×îºóÔÚ±ðÈËÌÖÂÛµÄÇé¿öÏÂÖÕÓÚÊÔ³öÀ´ÁËÕýÈ·½á¹û£¬ÏÂÀ´»¹µÃ×Ô¼º×ܽáÏ¡£
×Ô¼ºµÄÓ²¼þƽ̨²Å²ÉÓõÄÊÇ6410µÄDMC1¼´32λµÄDRAM¿ØÖÆÆ÷£¬Á½¸ö16λ128MµÄDDRµÄµØÖ·ÏßÊǹ²ÔÚÒ»ÆðÁ¬ÔÚ6410µÄ16¸ùµØÖ·Ïß ......