代码搜索:linux
找到约 10,000 项符合「linux」的源代码
代码结果 10,000
www.eeworm.com/read/398902/2367139
linux makefile.linux
CFLAGS=-g -I/usr/include -I../../include/ -O0 -Wall
CC=gcc
.y.c:
bison -d -o $@ $<
.l.c:
flex -o$@ $<
SRCS = main.c io.c x86emu.c int.c pci.c
OBJS = main.o io.o x86emu.o int.o pci.o
all :
www.eeworm.com/read/398902/2367159
linux makefile.linux
#############################################################################
#
# Realmode X86 Emulator Library
#
# Copyright (C) 1996-1999 SciTech Software, Inc.
#
# ===============
www.eeworm.com/read/398200/2384807
cdl linux.cdl
# ====================================================================
#
# linux.cdl
#
# Linux compatibility layer data
#
# ==================================================================
www.eeworm.com/read/396823/2408157
linux makefile.linux
# Defines for example NSAPI programs running under Linux
# gcc
# If you get relocation errors, try:
# 1. compiling with Sun's cc
# 2. statically linking with libgcc
# 3. Adjusting LD_LIBRARY_PA
www.eeworm.com/read/396823/2408176
linux makefile.linux
# Defines for example NSAPI programs running under SOLARIS
CC_CMD=gcc -D_REENTRANT
LD_SHAREDCMD=ld -G
all:
prepare:
OS_TYPE=linux
INCLUDEDIR=../common
JAVA_INCLUDE=$(JAVA_HOME)/include
JK_OBJS =
www.eeworm.com/read/395929/2428390
em linux.em
# This shell script emits a C file. -*- C -*-
# It does some substitutions.
cat >e${EMULATION_NAME}.c
www.eeworm.com/read/395929/2428448
mt-linux
# When using glibc 2 on Linux we must always use vtable thunks.
CXXFLAGS_FOR_TARGET = $(CXXFLAGS) -fvtable-thunks -D_GNU_SOURCE
www.eeworm.com/read/395929/2430693
c linux.c
/* x86s running Linux */
#include
static char rcsid[] = "$Id: linux.c,v 1.5 1998/09/16 20:41:09 drh Exp $";
#ifndef LCCDIR
#define LCCDIR "/usr/local/lib/lcc/"
#endif
char *suffixes[] =
www.eeworm.com/read/395929/2431221
linux makefile.linux
TARGET_ARCH = linux
CC = g++
OPT = -O3
DEBUG = -g
OTHER = -Wall
CFLAGS = $(OPT) $(OTHER)
# CFLAGS = $(DEBUG) $(OTHER)
MODULE = simple_bus
include Makefile.srcs
OBJS = $(SRCS:.cpp=.o)
inc
www.eeworm.com/read/395929/2431243
linux makefile.linux
TARGET_ARCH = linux
CC = g++
OPT = -O3
DEBUG = -g
OTHER = -Wall
CFLAGS = $(OPT) $(OTHER)
# CFLAGS = $(DEBUG) $(OTHER)
MODULE = run
SRCS = simple_fifo.cpp
OBJS = $(SRCS:.cpp=.o)
include ../