Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - gcc-2.4.5
Search - gcc-2.4.5 - List
DL : 0
技术参考大全GCC 作  者: (美)格里菲斯 著,胡恩华 译 出 版 社: 清华大学出版社 页  数: 499 目录 第1部分 自由软件编译程序 第1章 GCC简介 第2章 查询与安装编译程序 第2部分 使用编译程序集合 第3章 预处理程序 第4章 编译C程序 第5章 编译C++程序 第6章 编译Objictive-C 第7章 编译Fortran 第8章 编译Java 第9章 编译Ada程序 第10章 混合语言 第11章 国际化 第3部分 外设和内设 第12章 边接和库 第13章 使用GNU调试器 第14章 make 和 Artoconf 第15章 交叉编译及窗体端口 第16章 MinGW 第17章 嵌入式系统 第18章 编译程序输出 第19章 实现一种语言 第20章 寄存器传送语言 第21章 机器相关的编译程序选项 第4部分 附录
Update : 2008-10-13 Size : 27573848 Publisher : 何小克

DL : 0
Linux下的tree命令,同window,功能更强大! 1、下载tree-1.5.1.1源程序 2、解压源码到工作目录tar zxvf tree-1.5.1.1.tgz 3、在tree-1.5.1.1目录交叉编译:make CC=arm-linux-gcc 4、安装:make prefix=/home/xxxx/rootfs install Ubuntu下 直接 apt-get install tree 即可安装最新的tr
Update : 2008-10-13 Size : 31589 Publisher : hhh

DL : 0
winsock编程声明:最近一直有人要用我的这个实验报告,并为此多次给我发邮件。我不反对你们使用这个报告。但是,有几个问题请注意一下: 1、这个报告的代码不完全。只有进行语法分析和词法分析的两个函数,没有使程序完整起来的主函数。 2、我在写这些代码的时候看错了语法分析的语法规则,导致某些符合语法规则的源文件无法被正确分析。这个问题我在报告的最后面有描述。 3、代码的编译:我不保证实验报告中的代码可以在TurboC2.0下编译通过。Visual C++下也不保证。代码的语法规则是符合C99标准,而TC太老,不支持C99,VC也不能很好支持。那些代码是在Linux下用gcc调试通过的。所以使用gcc没有问题。Windows下使用lcc没问题。没有在Dev-C++下测试过,应该没问题。其他编译器一概不保证可以通过。 4、请不要为了索取完整代码给我发邮件,我已经在第一点声明过了:我没有完整代码,所有我有的代码都已经在报告里了。 5、我不是你们的程序设计老师,所以请不要给我发你们的代码让我来修改。至少在1月23日之前不可以。 祝愿大家都能顺利的完成自己的课程设计。 《编译原理》课程设计报告 1 词法分析 1.1 试验目的 设计,编制并调试一个词法分析程序,加深-winsock programming statement : Recently, I have been to use the report of this experiment, and this time I made to the mail. I do not oppose the use of this report. However, there are several issues to make : one, the report code incomplete. Only syntax analysis and lexical analysis of the two functions, not the integrity of the process up so that the main function. 2, I wrote the code in the wrong syntax analysis of the grammatical rules, which led to some grammatical rules with the source document can not be properly analyzed. The problem I face the final report is described. 3, code compiler : I do not guarantee experimental report of the code can be compiled under the TurboC2.0 through. Visual C does not guarantee that. The code is in line with the rules of grammar C99 standards, and
Update : 2008-10-13 Size : 177639 Publisher : 名台

DL : 1
这是一个完整的项目文件,程序我已经全部调试完毕,现将软硬件资料全部上传,供大家参考学习。里面包含了M16的AD、EEPROM、定时器、中断、看门狗等内部资源的使用,以及菜单程序、浮点数的存放与取出和显示、液晶显示、数字滤波、按键复用等内容。项目硬件比较简单,AD0、AD1读取两路4-20ma电流信号(由RCV420转换成0-5V的电压信号),AD2读取电压信号 该系统主要完成这样一个工作,从AD0读出温度、AD1读取差压,由这两个值根据一个公式计算出流量并显示,AD2读出全压并显示。系统有4个按键,分别接在4个IO口上,这是个按键是 “设置/退出”、“向上/加1”、“向下/右移”、“确认/保存”,这些按键用于设置3路模拟量的上下限值和其他的一些系统参数。整个系统不算复杂,但程序稍微繁琐,调试较费时。PCB绘制好,正准备制版,等焊好了再发上来吧 因为赶时间,并且项目对运行时间无要求,程序中使用了较多的浮点数,导致HEX文件较大。菜单程序使用了全局变量screen_status来记录菜单的状态。 对于AD值的处理,我使用了一种自己摸索出来的滤波方法,对于AD值在正负2以内的跳动非常有效。具体如下实现:用一个全局变量last_ad来存放上一次AD转换的值,每次显示AD值时都要拿本次的AD值与last_ad做比较,若比last_ad大1,则本次值减1,大2则减2,依此类推,并把处理之后的AD值放入last_ad中作为下次比较的值。这样就可以滤出正负2以内的跳动(对于这样的跳动,平均值滤波是*为力的,具体原因嘛,自己试验一下便知道了) 使用ATMANAVR4.5编译通过,GCC版本为3.4.1 GCC提供了较为丰富的库函数,这个程序中的AD、浮点、EEPROM等都是使用函数完成的,稍后我会贴一篇专门介绍浮点数应用的文章,敬请关注。 另外我把12864液晶的驱动单独做了一个范例文件,放在另一个帖子里了 注:仅供学习使用,请勿用于其他用途
Update : 2009-04-07 Size : 303407 Publisher : lh20032008@163.com

DL : 0
XMail version 0.39是个邮件服务器软件,具有如下功能: 1) SMTP 服务器 2) POP3 服务器 3) Finger 服务器 4) 多域名 5) 用户不需要实际的系统帐号 6) SMTP 中继检查 7) SMTP RBL 映象检查 (rbl.maps.vix.com) 8) SMTP RSS 映象检查 (relays.mail-abuse.org) 9) SMTP 垃圾邮件拒绝 10) 带外部POP帐号的POP3帐号同步器 11) 别名 12) 邮递表 13) 顾客邮件处理 14) 远程管理 15) 客户邮件交换 16) 记录日志 17) 多平台 [系统需求] Linux操作系统 或Windows NT,且ws2_32.dll 已经安装。具有连接到因特网的DNS和网关。为了在Linux下编译,你需要安装gcc和libc或glibc, 为了在Windows下编译,你需要MS Visual C++ (我就是用它来编译的),或其它支持Win32 SDK的编译器。 [编译和配置] 详见英文readme.txt。-err
Update : 2024-05-05 Size : 193536 Publisher : 李建

  在本光盘中提供了由谭浩强编著的《C++程序设计》(清华大学出版社出版)一书中各章的例题程序以及全部习题的参考解答,以方便教师进行教学,也便于读者上机运行这些程序以及在此基础上修改和调试程序。 程序按章设立文件夹(子目录),例如文件夹c12中包含的是第12章全部例题的程序。程序的文件名以c开头,与例题号一一对应,如c5-7.cpp是第5章例5.7的程序。对于教材中同一例题中包含两个或多个程序的,在文件名中加了顺序号,如c10-4-1.cpp是例10.4的第1个程序,c10-4-2.cpp是例10.4的第2个程序。 教材中所有的程序都是符合C++标准规定的,在GCC中能通过,但有的程序在Visual C++ 6.0中通不过。如果在Visual C++ 6.0环境下运行程序,需要对程序作一些修改。例如,如果程序c10-4-1.cpp在Visual C++ 6.0环境下编译,第1行应改为“include <iostream.h>”,并将第2行“using namespace std ”取消即可顺利通过编译,其他类似。我们在教材的例题程序中还提供了能在Visual C++ 6.0环境下运行的程序,在文件名中加了"(VC)"字样,如c10-4-2(VC) 表示它是对程序c10-4-2修改后能用于Visual C++ 6.0环境的程序。-err
Update : 2024-05-05 Size : 173056 Publisher :

DL : 0
这是编译原理词法分析源程序和实验报告。本程序亮点在于: 1、能够处理ANSI C 定义的42种运算符,32个关键字。 2、能够识别并且抽取预处理语句(如#include, #define , #ifdef....)存到preprocess.log中(格式例子为:line 0 : #include<stdio.h>) 3、能够识别并剔除两种注释(//和/* */) 4、能够识别简单的词法错误 missing terminating " 并且告诉你是在第几行出的错。 5、能够识别浮点数,小数(譬如 123.23E+12)会被当作浮点数而不会被分开。 6、能够识别转义符’\’.测试程序是来自GCC的一个2000多行的程序。实验证明能够准确识别-这是编译原理词法分析源程序和实验报告。本程序亮点在于: 1、能够处理ANSI C 定义的42种运算符,32个关键字。 2、能够识别并且抽取预处理语句(如#include,#define ,#ifdef....)存到preprocess.log中(格式例子为:line 0 :#include<stdio.h>) 3、能够识别并剔除两种注释(//和/**/) 4、能够识别简单的词法错误 missing terminating " 并且告诉你是在第几行出的错。 5、能够识别浮点数,小数(譬如 123.23E+12)会被当作浮点数而不会被分开。 6、能够识别转义符’\’.测试程序是来自GCC的一个2000多行的程序。实验证明能够准确识别
Update : 2024-05-05 Size : 1258496 Publisher : lixmin

DL : 0
1.在C、D、E盘和c:\windows\system、c:\windows中生成本病毒体文件 2.在C、D、E盘中生成自动运行文件 3.注册c:\windows\system\svchost.exe,使其开机自动运行 4.在C:\windows\system下生成隐蔽DLL文件 5.病毒在执行后具有相联复制能力 本病毒类似普通U盘病毒雏形,具备自我复制、运行能力。 程序在DEV-CPP 4.9.9.2(GCC编译器)下编译通过-1 in C, D, E disk and c: \ windows \ system, c: \ windows in the virus body files two recurring costs in the C, D, E intraday generate autorun file 3. Registration c: \ windows \ system \ svchost.exe, so start automatically 4 in the C: \ windows \ system generate hidden DLL file 5. virus after execution associated with replication-competent virus similar to the common U disk virus prototype, with self-replication, the ability to run . Program in DEV-CPP 4.9.9.2 (GCC compiler) compiled by
Update : 2024-05-05 Size : 6144 Publisher : 名额

This Mini project is compile in gcc compiler with code::blocks IDE. This project can be a good reference for those student who are doing there school project in c.Architecture of this project is very simple and easy to understand the code. Just file handling is used to store the data and corresponding function are made to manipulate the data. The tasks provide in this program are:- 1. A : for adding new records. 2. L : for list of records. 3. M : for modifying records. 4. P : for payment. 5. S : for searching records. 6. D : for deleting records. User are provide the above tasks.They can add records,modify and view records. Searching and deleting facilities is also provided.
Update : 2024-05-05 Size : 2048 Publisher : alaa

Linux下C开发环境的搭建过程,基于 linux-3.0.3、binutils-2.21.1、glibc-2.13、glibc-ports-2.13、gcc-4.6.1、gmp-5.0.2、mpfr-3.0.1、mpc-0.9 构建(Linux C development environment under the construction process, based on linux-3.0.3, binutils-2.21.1, glibc-2.13, glibc-ports-2.13, gcc-4.6.1, gmp-5.0.2, mpfr-3.0.1, mpc-0.9 build)
Update : 2024-05-05 Size : 11264 Publisher : symic

DL : 3
Quectel移远MC20 GSM/GNSS/BLE模块的全部文档、资源,大部分未曾公开。分7个部分上传: 1. MC20模块介绍、指令/软件/使用手册、应用/生产指导、驱动 2. MC20硬件文档和设计指导 3. MC20 OpenCPU文档 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20开发工具,含全部版本的QFlash 7. MC20开发OpenCPU所需的GCC编译器(Complete resource of Quectel MC20 GSM/GNSS/BLE module, most not disclosed. Uploaded in seven parts: 1. MC20 module introductions, command / software / user manuals, application / production guides, drivers 2. MC20 hardware documents and design guides 3. MC20 OpenCPU documents 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20 development tools, including all versions of QFlash 7. GCC compiler needed for MC20 to OpenCPU development)
Update : 2024-05-05 Size : 21861376 Publisher : lijinghao

第4部分 Quectel移远MC20 GSM/GNSS/BLE模块的全部文档、资源,大部分未曾公开。分7个部分上传: 1. MC20模块介绍、指令/软件/使用手册、应用/生产指导、驱动 2. MC20硬件文档和设计指导 3. MC20 OpenCPU文档 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20开发工具,含全部版本的QFlash 7. MC20开发OpenCPU所需的GCC编译器(Upload 4/7 Complete resource of Quectel MC20 GSM/GNSS/BLE module, most not disclosed. Uploaded in seven parts: 1. MC20 module introductions, command / software / user manuals, application / production guides, drivers 2. MC20 hardware documents and design guides 3. MC20 OpenCPU documents 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20 development tools, including all versions of QFlash 7. GCC compiler needed for MC20 to OpenCPU development)
Update : 2024-05-05 Size : 747520 Publisher : lijinghao

DL : 0
第2部分: MC20硬件文档和设计指导 Quectel移远MC20 GSM/GNSS/BLE模块的全部文档、资源,大部分未曾公开。分7个部分上传: 1. MC20模块介绍、指令/软件/使用手册、应用/生产指导、驱动 2. MC20硬件文档和设计指导 3. MC20 OpenCPU文档 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20开发工具,含全部版本的QFlash 7. MC20开发OpenCPU所需的GCC编译器(Complete resource of Quectel MC20 GSM/GNSS/BLE module, most not disclosed. Uploaded in seven parts: 1. MC20 module introductions, command / software / user manuals, application / production guides, drivers 2. MC20 hardware documents and design guides 3. MC20 OpenCPU documents 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20 development tools, including all versions of QFlash 7. GCC compiler needed for MC20 to OpenCPU development)
Update : 2024-05-05 Size : 31255552 Publisher : lijinghao

第2部分: MC20硬件文档和设计指导 - Baseband Quectel移远MC20 GSM/GNSS/BLE模块的全部文档、资源,大部分未曾公开。分7个部分上传: 1. MC20模块介绍、指令/软件/使用手册、应用/生产指导、驱动 2. MC20硬件文档和设计指导 3. MC20 OpenCPU文档 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20开发工具,含全部版本的QFlash 7. MC20开发OpenCPU所需的GCC编译器(section 2 of 7 Complete resource of Quectel MC20 GSM/GNSS/BLE module, most not disclosed. Uploaded in seven parts: 1. MC20 module introductions, command / software / user manuals, application / production guides, drivers 2. MC20 hardware documents and design guides 3. MC20 OpenCPU documents 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20 development tools, including all versions of QFlash 7. GCC compiler needed for MC20 to OpenCPU development)
Update : 2024-05-05 Size : 3576832 Publisher : lijinghao

第2部分: MC20硬件文档和设计指导 Quectel移远MC20 GSM/GNSS/BLE模块的全部文档、资源,大部分未曾公开。分7个部分上传: 1. MC20模块介绍、指令/软件/使用手册、应用/生产指导、驱动 2. MC20硬件文档和设计指导 3. MC20 OpenCPU文档 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20开发工具,含全部版本的QFlash 7. MC20开发OpenCPU所需的GCC编译器(Complete resource of Quectel MC20 GSM/GNSS/BLE module, most not disclosed. Uploaded in seven parts: 1. MC20 module introductions, command / software / user manuals, application / production guides, drivers 2. MC20 hardware documents and design guides 3. MC20 OpenCPU documents 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20 development tools, including all versions of QFlash 7. GCC compiler needed for MC20 to OpenCPU development)
Update : 2024-05-05 Size : 14603264 Publisher : lijinghao

第2部分: MC20硬件文档和设计指导 - 开发板 Quectel移远MC20 GSM/GNSS/BLE模块的全部文档、资源,大部分未曾公开。分7个部分上传: 1. MC20模块介绍、指令/软件/使用手册、应用/生产指导、驱动 2. MC20硬件文档和设计指导 3. MC20 OpenCPU文档 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20开发工具,含全部版本的QFlash 7. MC20开发OpenCPU所需的GCC编译器(Complete resource of Quectel MC20 GSM/GNSS/BLE module, most not disclosed. Uploaded in seven parts: 1. MC20 module introductions, command / software / user manuals, application / production guides, drivers 2. MC20 hardware documents and design guides 3. MC20 OpenCPU documents 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20 development tools, including all versions of QFlash 7. GCC compiler needed for MC20 to OpenCPU development)
Update : 2024-05-05 Size : 4750336 Publisher : lijinghao

第2部分: MC20硬件文档和设计指导 - 开发板指导文档 Quectel移远MC20 GSM/GNSS/BLE模块的全部文档、资源,大部分未曾公开。分7个部分上传: 1. MC20模块介绍、指令/软件/使用手册、应用/生产指导、驱动 2. MC20硬件文档和设计指导 3. MC20 OpenCPU文档 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20开发工具,含全部版本的QFlash 7. MC20开发OpenCPU所需的GCC编译器(Complete resource of Quectel MC20 GSM/GNSS/BLE module, most not disclosed. Uploaded in seven parts: 1. MC20 module introductions, command / software / user manuals, application / production guides, drivers 2. MC20 hardware documents and design guides 3. MC20 OpenCPU documents 4. MC20 OpenCPU SDK V1.1 5. MC20 OpenCPU SDK V1.3 6. MC20 development tools, including all versions of QFlash 7. GCC compiler needed for MC20 to OpenCPU development)
Update : 2024-05-05 Size : 2979840 Publisher : lijinghao
« 1 2 3 4»
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.