File: options.gcc

package info (click to toggle)
t1lib0 0.7.1-5
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,740 kB
  • ctags: 2,569
  • sloc: ansic: 20,709; sh: 2,298; makefile: 878; python: 532
file content (27 lines) | stat: -rw-r--r-- 785 bytes parent folder | download
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
# File:      options.gcc
# Date:      03/14/1998
# Author:    Rainer Menzner (rmz@neuroinformatik.ruhr-uni-bochum.de)
#
# This file is part of t1lib and used during configuring for 
# examining the compiler options that are necessary for 
# generation of dynamically linked stuff.
#
# Compiler: gcc
#

echo "  --> options configuration for GNU C compiler"

# What to tell CC to save the runtime library path in executable?
# This isn't very useful for a binary package
# RPATH_OPTION="-Wl,-R../lib"
RPATH_OPTION=""

# How to set the DT_SONAME-field for version management in the 
# shared library? 
SONAME_OPTION="-Wl,-soname,"

# How to generate position independent code?
PIC_OPTION="-fPIC"

# How to tell the compiler to generate a shared linked executable?
SHARED_OPTION="-shared"