代码搜索:objects
找到约 10,000 项符合「objects」的源代码
代码结果 10,000
www.eeworm.com/read/325757/13186115
txt 跟我一起写 makefile.txt
跟我一起写 Makefile
陈皓 (CSDN)
概述
——
什么是makefile?或许很多Winodws的程序员都不知道这个东西,因为那些Windows的IDE都为你做了这个工作,但我觉得要作一个好的和professional的程序员,makefile还是要懂。这就好像现在有这么多的HTML的编辑器,但如果你想成为一个专业人士,你还是要了解HTML的标识的含义。特别 ...
www.eeworm.com/read/138927/13201767
makefile
# Makefile for building FinC
# Project: FinC
include ../config.mk
CFLAGS += -g -I../include
LFLAGS += -g
PROJECT =interpreter
OBJECTS =interpreter.o
FINCLIB =../lib/libfinc.a
.c.o:
$(CC) -c
www.eeworm.com/read/138927/13201923
makefile
# Makefile for building FinC
# Project: FinC
include ../config.mk
CFLAGS += -I../include
PROJECT =libtiny.a
OBJECTS =list.o \
mem.o \
object.o \
string.o \
hash.o \
vector.o \
stack.o \
www.eeworm.com/read/138927/13201972
makefile
# Makefile for building FinC
# Project: FinC
include ../config.mk
CFLAGS += -I../include
PROJECT =libfinc.a
AVCALL =libavcall.a
SOURCE = fincsys.c \
fincdata.c \
fincnode.c \
fincfield.c
www.eeworm.com/read/138927/13202305
makefile
# Makefile for building FinC
# Project: FinC
CC =gcc
#CFLAGS =-O2 -I../src -I./ -I../tinylib
#LFLAGS =
CFLAGS =-g
LFLAGS =-g
PROJECT =pkgtest.so
OBJECTS = pkgtest.o
all: $(PROJECT)
$(P
www.eeworm.com/read/325411/13207460
c read.c
/* A module of ASYNCx.LIB version 1.20 */
#include
#include "asyncdef.h"
/************************************************************
Receive n objects of size s from the port associ
www.eeworm.com/read/138758/13216865
java sequence.java
//: c08:Sequence.java
// Holds a sequence of Objects.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import com.bruceeckel.s
www.eeworm.com/read/325157/13222479
h memsys.h
/*----------------------------------------------------------------------
File : memsys.h
Contents: memory management system for equally sized (small) objects
Author : Christian Borgelt
His
www.eeworm.com/read/138505/13234269
makefile
#
# Makefile for Simple Genetic Algorithm C code
#
#####################################
# Define implicit compilation rules #
#####################################
# uncomment following lines
www.eeworm.com/read/324975/13235097
txt modelsim 初学者心得.txt
我刚刚接触modelsim,我想大多数菜鸟跟我一样,看过如何使用ModelSim的介绍,说句实话,那些介绍写的都太过简单,仿佛大家都不屑写上一些比较“弱智”的步骤,恰恰就是这些看似累赘的步骤,难为我好久。
教程上都写道,modelsim的简单使用方法如下:建立库- 影射库到物理目录 - 编译代码 - 启动仿真。首先建立库就叫我头晕。库的概念用在这儿实在不合适,把我吓坏了,也就没心 ...