-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnwconfig
55 lines (40 loc) · 1.53 KB
/
nwconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
################################################################
#
# configuration for Noweb's behavior
# How should Noweb run external pipelines?
# fork Unix fork and Unix pipelines
# spawn Run programs sequentially using spawn and temporary files
PIPE=spawn
# What file and PATH conventions should Noweb use (unix or dos)?
PLATFORM=unix
################################################################
#
# installation instructions for your site
# BIN is where the no command lands
# LIB2 is where external pipeline stages from Noweb 2 are stored
# LIB3 is where Noweb 3 scripts and configuration files go
BIN=/h/nr/machine/amd64-linux/bin
LIB2=/usr/lib64/noweb
LIB3=/h/nr/machine/amd64-linux/lib/noweb3
################################################################
#
# information about your system
# Adjust these three lines for your ANSI C compiler
CC=gcc -ansi -pedantic
XCFLAGS=
LD=gcc
# if your system doesn't have ranlib, change "ranlib" to "true"
RANLIB=ranlib
# set the alignment (in bytes) of pointers returned by malloc
# see cii/install.html for more
#CIIMAXALIGN=8 # Sparc, Alpha
CIIMAXALIGN=4 # Linux x86
# in SunOs 4.1.x, uncomment the following line to avoid prototypes warnings
# for standard functions
#XINCLUDES=-I/usr/5include
# if you don't have popen() in your C library, comment the following line:
POPEN=-DPOPEN
# if your C library is not POSIX compliant, comment the following line:
POSIX=-DPOSIX
# if you don't have strerror() in your C library, uncomment the following line:
#NOSTRERROR= -DNOSTRERROR