Trying to build on FC17 64 bit

The place to discuss linux version of MakeMKV
Post Reply
mgscott
Posts: 8
Joined: Sat Sep 22, 2012 11:05 pm

Trying to build on FC17 64 bit

Post by mgscott »

I had this working on Ubuntu, but have since switched to Fedora.
The bin tarball installed and built with no problems.
Trying to build the oss, I get the following:

$make -f makefile.linux
which: no moc-qt4 in (/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/home/mike/.local/bin:/home/mike/bin)
mkdir -p out
gcc -Os -D_GNU_SOURCE -D_linux_ -D_REENTRANT -shared -Wl,-z,defs -oout/libdriveio.so.0.full -Ilibdriveio/inc libdriveio/src/infolist.cpp libdriveio/src/scsihlp.cpp libdriveio/src/srlist.cpp libdriveio/src/stdquery.cpp libdriveio/src/tipclient.cpp libdriveio/src/tipcommon.cpp libdriveio/src/tipserver.cpp libdriveio/src/drives/pioneer.cpp libdriveio/src/drives/xboxhddvd.cpp \
-fPIC -Xlinker -dy -Xlinker --version-script=libdriveio/src/libdriveio.vers \
-Xlinker -soname=libdriveio.so.0 -lc -lstdc++
gcc: error trying to exec 'cc1plus': execvp: No such file or directory
...
gcc: error trying to exec 'cc1plus': execvp: No such file or directory
make: *** [out/libdriveio.so.0.full] Error 1

yum can't find anything resembling this. Any idea what packages I need to have to make the build work?
-- Mike Scott
CoderJoe
Posts: 8
Joined: Thu Sep 13, 2012 7:17 pm

Re: Trying to build on FC17 64 bit

Post by CoderJoe »

I think you need to install g++.
mgscott
Posts: 8
Joined: Sat Sep 22, 2012 11:05 pm

Re: Trying to build on FC17 64 bit

Post by mgscott »

CoderJoe wrote:I think you need to install g++.
I had that but not c++ support. After installing that and openssl (also complained about).
Then it needed expat-devel libraries
Then rcc (QT4) development.and FINALLY it appears to have compiled.
Thanks for the pointer in the right direction.
-- Mike Scott
jalbrizio
Posts: 1
Joined: Sat Oct 13, 2012 5:27 am

Re: Trying to build on FC17 64 bit

Post by jalbrizio »

try using

Code: Select all

yum groupinstall "development tools"
Post Reply