CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 搜索资源 - gcc a

搜索资源列表

  1. djgpp-gcc-bxnhy

    0下载:
  2. 里面包含了众多的编写操作系统的底层软件,好难找啊,大家要珍惜啊!包括ls,nasm,djgpp,等等等等。是个集合包-of which contains a large number of the operating system to prepare the bottom of software, the difficulty in finding good ah, we must cherish ah! Including ls, NASM, DJGPP, so on and so fort
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:32953813
    • 提供者:与乁
  1. pclint

    0下载:
  2. PClint,一个非常严格的C/C++编译器, 可以嵌入到VC.GCC等.它甚至能够检查出你C/C++代码中的内层泄漏问题,变量未初始化问题,不安全的使用指针等...微软公司把它作为代码检查工具,只有通过它才能正式发行-PClint, a very strict C / C compiler, can be embedded into VC.GCC so. It can even check out your C / C code in the inner leakage, uninitiali
  3. 所属分类:编辑器/阅读器

    • 发布日期:2008-10-13
    • 文件大小:3030033
    • 提供者:肖巍
  1. jiandanbianjiqi

    0下载:
  2. 这是一个简单的编辑器雏形,这里用到了屏幕开发库 curses 和键盘函数 keypad,程序可移动光标,输入,删除,增加代码就可成为功能强大的编辑器了, 编译程序:gcc -I/usr/include/ncurses edit.c -o edit -lncurses -This is a simple editor prototype, here the screen used for the development of curses and keyboard function keypa
  3. 所属分类:编辑器/阅读器

    • 发布日期:2008-10-13
    • 文件大小:1108
    • 提供者:wwwwppp
  1. snixos

    0下载:
  2. 一个小型的操作系统,采用gcc进行开发,几千行的代码,方便初学者学习-a small operating system, developed using gcc, thousands of the code to facilitate learning beginners
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:291144
    • 提供者:liuxf
  1. gcc-1.42.tar

    0下载:
  2. 这是完整的gcc源代码,版本为1.42,可以做学习和研究用-This is a complete gcc source code, version 1.42, learning and research
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:1860620
    • 提供者:yanzi
  1. mod-linux-0.11

    0下载:
  2. Linux 0.11 代码在不做修改的情况下,很难在现在的环境下这接编译通过(除非你能的到 10 几年前 Linus 用的那个版本的 gcc 什么的)。所以要对代码作少量修改(说说是少量花了好几小时的,主要是一上来不熟 gcc 的内嵌汇编)。比起linux0.01,linux0.11更加完善,更加接近操作系统的要求,内核小有利于学习linux-0.11 Linux code does not modify the circumstances, In the present difficult c
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:122234
    • 提供者:zuozaior
  1. typeof

    0下载:
  2. typeof,编译时获取表达式类型运算符,是gcc编译器的一个扩展(intel编译器 也支持). 笔者最近作一个项目时需要用比较hack的手段把第三方的dll(无lib但有头文件)里面的外部函数以函数指针的方式提取出来给其他模块作全局变量用,500多个函数呀,声明函数指针可不是个轻松事,类型名字至少排满一行,写了50多个就受不了了. 找了boost的typeof,把里面的代码大幅度简化,提炼,去掉一些依赖.请使用TYPEOF宏,无任何运行时开销。 本版本利用了vc6的1个bug(子类
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:1101
    • 提供者:朱元
  1. maze-telen-gcc-mac

    0下载:
  2. mac系统下载,纯C语言开发,终端运行调试,可以做IOS开发内核,迷宫系统maze。随机生成迷宫地图,自动探索出路设计-system mac download, pure C-language development, the terminal run the debugger, you can do IOS development kernel, maze system Maze. Randomly generated maze map, automatically discover a wa
  3. 所属分类:MacOS develop

    • 发布日期:2017-03-30
    • 文件大小:1414
    • 提供者:Telen
  1. GCC_manual

    0下载:
  2. 本手册页内容摘自GNU C编译器的完整文档,仅限于解释选项的含义. 除非有人自愿维护,否则本手册页不再更新.如果发现手册页和软件之间有所矛盾,请查对Info文件, Info文件是权威文档. 如果我们发觉本手册页的内容由于过时而导致明显的混乱和抱怨时,我们就停止发布它.不可能有其他选择,象更新Info文件同时更新man手册,因为其他维护GNU CC的工作没有留给我们时间做这个. GNU工程认为man手册是过时产物,应该把时间用到别的地方.-This manual page is an ex
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:298430
    • 提供者:thinkinweb
  1. banker_by_array

    0下载:
  2. 本程序为自己在学习操作系统时独立根据书上所述的银行家算法制作而成,包括一个数组输入函数(Sr()),数组输出函数(Pr())和一个判断函数(test()),并通过指针传递参数,可以自定义进程数目和资源种类数目(源程序限10个以内,可自行更改数组)。 注:本程序是在linux环境下通过gcc编译器编译成功的。若移植到windows环境下可能在汉字显示部分出现乱码。-This procedure for their own independence in learning, when the o
  3. 所属分类:OS Develop

    • 发布日期:2017-04-03
    • 文件大小:8798
    • 提供者:
  1. PL0

    0下载:
  2. PL0 C语言版本 //A.2 C 版 本 /*编译和运行环境: *1Visual C++6.0,VisualC++.NET and Visual C++.NET 2003 *WinNT, Win 200, WinXP and Win2003 *2 gcc version 3.3.2 20031022(Red Hat Linux 3.3.2-1) *Redhat Fedora core 1 *Intel 32 platform *使用方法: *运行后
  3. 所属分类:Compiler program

    • 发布日期:2017-03-22
    • 文件大小:16653
    • 提供者:fangruizhou
  1. cint-5.16.19-win32.tar

    1下载:
  2. Cint(C/C++ interpreter, C-int)是一个C++解释器,顾名思义,和GCC、VC等编译器不同,它是解释执行C++代码的。它具有的能力有: 支持 K&R-C, ANSI-C, ANSI-C++ 可处理大规模C/C++源码 动态C++ 内置的Debugger和Class Browser Cint可以在不少操作系统上工作 -Cint (C/C++ interpreter, C-int) is a C++ interpreter, by definit
  3. 所属分类:Compiler program

    • 发布日期:2017-04-09
    • 文件大小:1989070
    • 提供者:hopper
  1. gcc-inline-asm

    0下载:
  2. This a compilation in FrameMaker of three public domain documents written by others. There is no original content added by myself. The three documents are: 1. A portion of the gcc info page for gcc 2.8.1, dealing with the subject of inline assemb
  3. 所属分类:assembly language

    • 发布日期:2017-03-28
    • 文件大小:54741
    • 提供者:wangbibo
  1. GCCIntrinsicsTest(SSE)

    0下载:
  2. A test program demonstrating how to use SSE instructions in GCC, via compiler intrinsics. Includes Windows binary compiled with MinGW, and batch file showing what command line options you should be passing to the GCC.-A test program demonstrating how
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:74919
    • 提供者:Mike Kasprzak
  1. AT-T_linux_ASM

    0下载:
  2. 基于80X86体系的AT&T语法及GCC自带语法的汇编语言,PDF格式,很清晰,非常不错。-80X86 system based on AT & T syntax and grammar GCC comes with assembly language, PDF format, very clear, very good.
  3. 所属分类:assembly language

    • 发布日期:2017-03-30
    • 文件大小:231202
    • 提供者:Human旦旦
  1. typeof_common

    0下载:
  2. typeof,编译时获取表达式类型运算符,是gcc编译器的一个扩展(intel编译器 也支持). 笔者最近作一个项目时需要用比较hack的手段把第三方的dll(无lib但有头文件)里面的外部函数以函数指针的方式提取出来给其他模块作全局变量用,500多个函数呀,声明函数指针可不是个轻松事,类型名字至少排满一行,写了50多个就受不了了. 找了boost的typeof,把里面的代码大幅度简化,提炼,去掉一些依赖.请使用TYPEOF宏,无任何运行时开销。 本版本利用了vc6的1个bug(子类
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:2083
    • 提供者:朱元
  1. cint-5.18.00

    0下载:
  2. Cint(C/C++ interpreter, C-int)是一个C++解释器,顾名思义,和GCC、VC等编译器不同,它是解释执行C++代码的。我们可以利用它来让我们的程序支持解释C++语言。 附带源码-Cint (C/C++ interpreter, C-int) is a C++ interpreter, by definition, and the GCC, VC and other compiler different, it is interpreted C++ code. We
  3. 所属分类:Compiler program

    • 发布日期:2017-05-11
    • 文件大小:2618192
    • 提供者:DERAIN
  1. gcc

    0下载:
  2. 是对GCC这种GNU工程的C和C++编译器的用法的详细介绍以及其他注意事项。-GCC is the GNU project C and that C++ compiler, a detailed descr iption of the usage and other considerations.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:284815
    • 提供者:wzq
  1. gmp-5.0.2.tar

    0下载:
  2. GMP 是一个任意精度的数学计算库。 想升级GCC到4.3.0版本,在安装前,需要先安装MPFR和GMP.-GMP is a free library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating point numbers. There is no practical limit to the precision except the on
  3. 所属分类:OS Develop

    • 发布日期:2017-04-09
    • 文件大小:2024744
    • 提供者:guliqun
  1. gcc-3.3.5.tar

    0下载:
  2. 一个语法编译程序,包括词法分析器、语法分析器以及实现对简单程序设计语言中的逻辑运算表达式、算术运算表达式、赋值语句、IF语句、While语句以及do…while语句进行编译,并生成中间代码和直接生汇编指令的代码生成器-a english compile-A grammar compiler, including the lexical analyzer, parser, and the expression of logical operations in a simple programmin
  3. 所属分类:Compiler program

    • 发布日期:2017-06-19
    • 文件大小:31324034
    • 提供者:认识的也是
« 12 »
搜珍网 www.dssz.com