本文来自:http://www.cuplayer.com/player/PlayerCode/FFmpeg/2014/0706/1401.html图文介绍windows下实现编译ffmpeg工程的详细步骤:1、搭建 MinGW 的编译环境下载yasm,地址:http://yasm.tortall.n...
本文来自:http://blog.sina.com.cn/s/blog_6125d067010168dt.html工作中用到了ffmpeg x64。 发现编译出来x64的ffmpeg,很不容易。特记录下来。原计划编译 静态库, 发现静态库,在vs2010调用过程中,总是出现莫名其妙的错误。 后来发现...
分类:
其他好文 时间:
2015-08-07 22:07:34
阅读次数:
140
环境准备
codeblocks
1 Settings–Compiler–Linker Settings中添加~\CodeBlocks\MinGW\lib\libwsock32.a
2 #include
vs2010
#include
#pragma comment(lib, "ws2_32")
第一个Socket程序:
#include
#include
usi...
分类:
编程语言 时间:
2015-08-07 14:50:31
阅读次数:
130
sublime 是一款强大的跨平台代码编辑器,小巧而且丰富实用的功能是Visual Studio不能比拟的,但是编译运行是一个软肋,本文通过在sublime中配置g++编译器实现程序的编译功能。具体做法一共有四个步骤:
下载安装Sublime text2 for windows
下载安装 MinGW 与 系统变量设置
Sublime Building System 设置
编译测...
分类:
编程语言 时间:
2015-08-07 13:29:32
阅读次数:
161
接下来要做一个linux下的程序了。下载linux version fbx sdktar zxvf ...gz按照安装说明 提升权限并没什么用 还是,cannot execute binary file感觉是版本的问题,也就是说我要用f extension bx sdk这个版本 是dll的vs跑.....
分类:
其他好文 时间:
2015-08-06 12:48:29
阅读次数:
137
需要的工具: jdk-7u11-windows-x64.exe eclipse-SDK-4.2.2-win32-x86_64.zip cdt-master-8.1.2.zip mingw-get-inst-20120426.exe A. eclipse与JDK的安装这里就不做赘述,安装CDT插件:安...
一、在mingw-w64官网下载mingw-w64在线安装包二、点击mingw-w64进行安装,选择: Version:选最新版本 我这个是4.9.2 Architecture:x86_64 (64位系统环境开发64位程序) Threads:posix Exception:seh Buil...
分类:
其他好文 时间:
2015-08-05 06:23:39
阅读次数:
937
没亲手做过编译器就是被人欺,从一道变态的i++题猜编译器的行为(表达式从左往右扫描,同一变量相互影响)首先不要被人蒙了,如果是这样,根本编译不过:int i=1;int b=i+++++i;printf("%d %d\n", b ,i);Mingw报错:error: lvalue required ...
分类:
其他好文 时间:
2015-08-04 22:43:50
阅读次数:
127
首先不要被人蒙了,如果是这样,根本编译不过:int i=1;int b=i+++++i;printf("%d %d\n", b ,i);Mingw报错:error: lvalue required as increment operand (好像是说,++缺左值,这里的++是上题的第三第四个加号)V...
分类:
其他好文 时间:
2015-08-04 20:35:04
阅读次数:
121
Embedding SQLite in a c programm The following program demonstrates how to embed SQLite into a c program.I compiled the program with MinGW without a.....
分类:
数据库 时间:
2015-08-01 17:16:03
阅读次数:
182