cross platform port
文章平均质量分 56
菠菜
我的新浪微博http://weibo.com/bocaicfa
展开
-
port lua to arm platform
This afternoon, I config my arm develop environment in ubuntu.I try port lua to arm,To my surprise, it is so easy to port,we just need change "gcc" to "arm-linux-gcc" and make ansi. so,see my scre原创 2009-10-13 17:25:00 · 1267 阅读 · 0 评论 -
成功的把ftk移植到arm-linux上
FTK(funny tool kit) 是一个用在嵌入式平台的GUI 开发框架。 授权协议: LGPL; 开发语言: C/C++; 操作系统: 嵌入式; 软件主页: http://code.google.com/p/ftk/ 移植lcd部分时碰到两个问题:1.lcd不显示,后来发现是公司自己写的lcd驱动,比fb额外要发一个专有的ioctl flush指令,2.颜色不对,板子的l原创 2010-03-09 13:19:00 · 1740 阅读 · 0 评论 -
cygwin跨平台移植开发系列2--so2lib实用工具(把cygwin生成的so或dll转换成vc可调用的lib)
可以是任意PE格式的、没有strip的DLL。 // so2lib.cpp : create a lib export table for vc by dll/so.// 1.2 by philsong@techtrex.com// modify base at a project "CodeProject Create your Proxy DLLs automatically原创 2009-12-29 14:12:00 · 3248 阅读 · 0 评论 -
cygwin跨平台移植开发系列1--在cygwin下使用VC编译器
@echo offC:chdir C:/lib/cygwin/binset PATH=%PATH%;C:/Program Files/Microsoft Visual Studio 9.0/VCcall vcvarsall.batbash --login -i原创 2009-12-29 14:09:00 · 1221 阅读 · 0 评论 -
linux frame buffer grab
linux的驱动就是个字符设备,可以用read write ioctl mmap操作,通过/dev/fbx可以像文件一样直接读写截屏dd if=/dev/fb0 of=snapshot恢复cat snapshot > /dev/fb0 开源的有fbgrab工具,不过是生成png文件,我自己写了一个生成bmp文件的工具叫fbcap,录制成avi格式,通过socket或serial把设备的操作发送原创 2010-03-03 16:37:00 · 1581 阅读 · 1 评论 -
getopt library in windows
Hi all,I have encounter some codes that include library. I guess it is a library under linux enviroment. However, I am using Windows and I want to compile the codes using Visual C++. Is there a count转载 2010-02-16 14:18:00 · 1657 阅读 · 0 评论 -
vc工程版本转换
事情起因于FTK的版本是用的VC2008,而我一般用VC6/2003/2005,今天早晨发现VC2003/2005/2008区别不大,把VC2008转成VC2005,只要把.sln和.vcprj里的版本改成Version="7.00"即可。 至于转到VC6,需要借助一个小工具,有兴趣的可以call我。原创 2010-02-09 10:10:00 · 1530 阅读 · 1 评论 -
Is cygwin support linux header file??
On 05/02/2010 04:31, Larry Hall (Cygwin) wrote:> On 02/04/2010 08:36 PM, phil song wrote:>> Hi,cygwin,>> when I compile some project in cygwin,It prompts>>>> /cygdrive/g/work_pla原创 2010-02-08 23:24:00 · 1352 阅读 · 0 评论 -
GUI库推荐--嵌入式GUI ftk
FTK类似microwindows,深圳的牛人开发的一个嵌入式GUI ftk 其中lua界面绑定,XUL,FB backend三个特性是我有想法去做却一直懒得动手做的三个方向。 2010.2.3开始读代码 http://blog.csdn.net/absurd/archive/2010/02/02/5279277.aspx 2010.2.7移植到VS200原创 2010-02-05 09:18:00 · 1619 阅读 · 1 评论 -
cygwin跨平台移植开发系列3--GCC+VC联合使用
前几天做一个模拟器时要把sdk代码在从linux移植到windows,我当初选用方案使用cygwin,然而却碰到一个crash的问题而搁浅。于是上周发了一个email到cygwin 的maillist,没想到得到cygwin官方的回复,原来faq里早就有了。另外我补充了几点注意的地方,faq还是说的不严谨。 Re: gcc and vc compiled library problem原创 2010-02-01 10:14:00 · 3587 阅读 · 2 评论 -
跨平台移植的一些思路
跨平台移植的一些思路philsong@techtrex.com 2010.1.11 1.解决方案 将不同平台的开发应用接口重新封装,提供统一开发规范,从而只用书写和管理一套程序代码,达到“一次代码编写,多个平台运行”的目的。 我们知道任何操作系统之上的应用程序的功能实现都依赖于操作系统API。基于这个认识,我们大概可以得到这样一个认识:任何的跨平台代码不过是原创 2010-01-11 13:34:00 · 4008 阅读 · 1 评论