dynamic link by default (really, who wants to use static linking?)
This commit is contained in:
parent
67a04a105b
commit
13f2e75bfa
|
@ -4,6 +4,11 @@ Started 2007-June-11
|
||||||
Please add newer entries at the top, list the date and your name with
|
Please add newer entries at the top, list the date and your name with
|
||||||
email address.
|
email address.
|
||||||
|
|
||||||
|
2007-June-13 UPDATE Richard A Burton <richardaburton@gmail.com>
|
||||||
|
================================================================================
|
||||||
|
+ build:
|
||||||
|
dynamic linking by default, use make -f makefile.gtk KICAD_STATIC_LINK=1
|
||||||
|
or uncomment the bit in libs.linux for static
|
||||||
|
|
||||||
|
|
||||||
2007-June-11 UPDATE Richard A Burton <richardaburton@gmail.com>
|
2007-June-11 UPDATE Richard A Burton <richardaburton@gmail.com>
|
||||||
|
|
13
libs.linux
13
libs.linux
|
@ -10,13 +10,12 @@ FINAL = 1
|
||||||
# You must comment or uncomment this line to disable/enable python support
|
# You must comment or uncomment this line to disable/enable python support
|
||||||
#KICAD_PYTHON = 1
|
#KICAD_PYTHON = 1
|
||||||
|
|
||||||
|
# You must uncomment these lines for static link (or build with "make -f makefile.gtk KICAD_STATIC_LINK=1")
|
||||||
# You must comment this line for dynamic link (or build with "make -f makefile.gtk KICAD_STATIC_LINK=0")
|
# dynamic link is less difficult than static link and is what you would normally want
|
||||||
# dynamic link is less difficult than static link choose it if you have problems (libs not found, or
|
# to use if kicad is running only on your system or one with same level of libraries.
|
||||||
# unresolved references), or if kicad is running only on YOUR system.
|
#ifndef KICAD_PYTHON
|
||||||
ifndef KICAD_PYTHON
|
#KICAD_STATIC_LINK = 1
|
||||||
KICAD_STATIC_LINK = 1
|
#endif
|
||||||
endif
|
|
||||||
|
|
||||||
ifdef KICAD_PYTHON
|
ifdef KICAD_PYTHON
|
||||||
PYTHON_VERSION=2.3
|
PYTHON_VERSION=2.3
|
||||||
|
|
Loading…
Reference in New Issue