mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added options to build a 32-bit version of VDR on a 64-bit machine to Make.config.template
This commit is contained in:
parent
0aae0d9cf7
commit
7f7fa7fd90
2
HISTORY
2
HISTORY
@ -7294,3 +7294,5 @@ Video Disk Recorder Revision History
|
|||||||
Münster).
|
Münster).
|
||||||
- Added including the Make.global and Make.config files to the dvbdhffdevice's
|
- Added including the Make.global and Make.config files to the dvbdhffdevice's
|
||||||
libhdffcmd/Makefile.
|
libhdffcmd/Makefile.
|
||||||
|
- Added options to build a 32-bit version of VDR on a 64-bit machine to
|
||||||
|
Make.config.template.
|
||||||
|
4
INSTALL
4
INSTALL
@ -36,6 +36,10 @@ and type 'make'. This should produce an executable file
|
|||||||
named 'vdr', which can be run after the DVB driver has been
|
named 'vdr', which can be run after the DVB driver has been
|
||||||
installed.
|
installed.
|
||||||
|
|
||||||
|
If you want to build a 32-bit version of VDR on a 64-bit machine, you can
|
||||||
|
use 'make M32=1' to do so. Note that you also need to have a Make.config file
|
||||||
|
(derived from Make.config.template) to make this work.
|
||||||
|
|
||||||
IMPORTANT: See "Configuration files" below for information on how
|
IMPORTANT: See "Configuration files" below for information on how
|
||||||
========= to set up the configuration files at the proper location!
|
========= to set up the configuration files at the proper location!
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
# See the main source file 'vdr.c' for copyright information and
|
# See the main source file 'vdr.c' for copyright information and
|
||||||
# how to reach the author.
|
# how to reach the author.
|
||||||
#
|
#
|
||||||
# $Id: Make.config.template 2.9 2012/09/01 10:31:33 kls Exp $
|
# $Id: Make.config.template 2.10 2012/10/09 10:32:32 kls Exp $
|
||||||
|
|
||||||
### The C compiler and options:
|
### The C compiler and options:
|
||||||
|
|
||||||
@ -21,6 +21,12 @@ CFLAGS += -fPIC
|
|||||||
CXXFLAGS += -fPIC
|
CXXFLAGS += -fPIC
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# Use 'make M32=1 ...' to build a 32-bit version of VDR on a 64-bit machine:
|
||||||
|
ifdef M32
|
||||||
|
CFLAGS += -m32
|
||||||
|
CXXFLAGS += -m32
|
||||||
|
endif
|
||||||
|
|
||||||
### The directory environment:
|
### The directory environment:
|
||||||
|
|
||||||
PREFIX = $(DESTDIR)/usr/local
|
PREFIX = $(DESTDIR)/usr/local
|
||||||
|
Loading…
Reference in New Issue
Block a user