Hi,
When I edit my Make.config and tell it to use CC=gcc-3.4 and CXX=g++-3.4, I get the following error:
g++-3.4: ": No such file or directory make: *** Deleting file `.dependencies' ccache g++-3.4 -g -O2 -Wall -Woverloaded-virtual -c -DREMOTE_KBD -DLIRC_DEVICE="/dev/lircd" -DRCU_DEVICE="/dev/ttyS1" -D_GNU_SOURCE -DVIDEODIR="/video/recordings" -DPLUGINDIR="./PLUGINS/lib" -DLOCDIR="/usr/share/vdr/locale " -DVFAT -I/usr/include/freetype2 -I/usr/src/DVB/linux/include audio.c g++-3.4: ": No such file or directory make: *** [audio.o] Error 1 make: *** Deleting file `audio.o'
Anyone know whats wrong?
On 8/13/07, Stone syphyr@gmail.com wrote:
Hi,
When I edit my Make.config and tell it to use CC=gcc-3.4 and CXX=g++-3.4, I get the following error:
g++-3.4: ": No such file or directory make: *** Deleting file `.dependencies' ccache g++- 3.4 -g -O2 -Wall -Woverloaded-virtual -c -DREMOTE_KBD -DLIRC_DEVICE="/dev/lircd" -DRCU_DEVICE="/dev/ttyS1" -D_GNU_SOURCE -DVIDEODIR="/video/recordings" -DPLUGINDIR="./PLUGINS/lib" -DLOCDIR="/usr/share/vdr/locale " -DVFAT -I/usr/include/freetype2 -I/usr/src/DVB/linux/include audio.c g++-3.4: ": No such file or directory make: *** [audio.o] Error 1 make: *** Deleting file `audio.o'
Anyone know whats wrong?
Ahh, I see a space in the middle of g++-3.4. How does that keep getting in there?
Regards.
Actually, I dont have to edit the default Make.config at all to make it fail. If I copy Make.config.template to Make.config and use the default, it still fails.
Regards.
On 8/13/07, Stone syphyr@gmail.com wrote:
Actually, I dont have to edit the default Make.config at all to make it fail. If I copy Make.config.template to Make.config and use the default, it still fails.
Found the problem.. its a broken template.
--- Make.config.template.orig 2007-08-12 16:50:32.000000000 -0700 +++ Make.config.template 2007-08-12 16:51:25.000000000 -0700 @@ -26,7 +26,8 @@ #DVBDIR = /usr/src/v4l-dvb/linux MANDIR = /usr/local/man BINDIR = /usr/local/bin -LOCDIR = /usr/share/vdr/locale # set to ./locale to run VDR from within its source directory +# Set LOCDIR to ./locale to run VDR from within its source directory +LOCDIR = /usr/share/vdr/locale
PLUGINDIR= ./PLUGINS PLUGINLIBDIR= $(PLUGINDIR)/lib
Regards.