Hi,
I try to compile geany on ubuntu 12.10 / 64bit intel. I have gcc 4.7.2 installed but get the following on sudo configure:
checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... no checking for mawk... mawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for style of include used by make... GNU checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking dependency style of gcc... gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... no checking whether g++ accepts -g... no checking dependency style of g++... none configure: error: No C++ compiler found. Please install a C++ compiler.
What am I missing?
Thanks,
Chris
On Sun, Dec 16, 2012 at 11:18 PM, Christoph Siefer siefer@sym.net wrote:
Hi,
I try to compile geany on ubuntu 12.10 / 64bit intel. I have gcc 4.7.2 installed but get the following on sudo configure:
What am I missing?
Chris, please try this first:
$ sudo apt-get build-dep geany
Cheers!
Harold
Hello Harold,
it says "command not found".
Am 16.12.2012 23:34, schrieb Harold Aling:
On Sun, Dec 16, 2012 at 11:18 PM, Christoph Siefer siefer@sym.net wrote:
Hi,
I try to compile geany on ubuntu 12.10 / 64bit intel. I have gcc 4.7.2 installed but get the following on sudo configure:
What am I missing?
Chris, please try this first:
$ sudo apt-get build-dep geany
Cheers!
Harold _______________________________________________ Users mailing list Users@lists.geany.org https://lists.geany.org/cgi-bin/mailman/listinfo/users
Christoph Siefer
On Sun, Dec 16, 2012 at 11:36 PM, Christoph Siefer siefer@sym.net wrote:
Hello Harold,
it says "command not found".
Did you type it without the $? (the $ is used to show you're a regular user, not root which is #)
-H-
Am 16.12.2012 23:38, schrieb Harold Aling:
On Sun, Dec 16, 2012 at 11:36 PM, Christoph Siefer siefer@sym.net wrote:
Hello Harold,
it says "command not found".
Did you type it without the $? (the $ is used to show you're a regular user, not root which is #)
-H- _______________________________________________ Users mailing list Users@lists.geany.org https://lists.geany.org/cgi-bin/mailman/listinfo/users
grgh...it late night here in germany. Thx, yeah, compiled my geany now!
Cheers,
Chris
You need to: sudo apt-get install build-essential That will install the C++ compiler that configure is complaining about.
On Mon, Dec 17, 2012 at 9:18 AM, Christoph Siefer siefer@sym.net wrote:
Hi,
I try to compile geany on ubuntu 12.10 / 64bit intel. I have gcc 4.7.2 installed but get the following on sudo configure:
checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... no checking for mawk... mawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for style of include used by make... GNU checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking dependency style of gcc... gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... no checking whether g++ accepts -g... no checking dependency style of g++... none configure: error: No C++ compiler found. Please install a C++ compiler.
What am I missing?
Thanks,
Chris
------------------------------**------------------------------**-------- Odalis: integrated KMS/CMS/DMS/Data-Warehouse and Process Management
sym.net christoph siefer gotenring 27 50679 koeln 049.(0)221.3762590 email: siefer@sym.net net: http://www.sym.net
______________________________**_________________ Users mailing list Users@lists.geany.org https://lists.geany.org/cgi-**bin/mailman/listinfo/usershttps://lists.geany.org/cgi-bin/mailman/listinfo/users
Hello Robert,
thanks, it worked.
Am 16.12.2012 23:41, schrieb Robert Parker:
You need to: sudo apt-get install build-essential That will install the C++ compiler that configure is complaining about.
On Mon, Dec 17, 2012 at 9:18 AM, Christoph Siefer <siefer@sym.net mailto:siefer@sym.net> wrote:
Hi, I try to compile geany on ubuntu 12.10 / 64bit intel. I have gcc 4.7.2 installed but get the following on sudo configure: checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... no checking for mawk... mawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for style of include used by make... GNU checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking dependency style of gcc... gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... no checking whether g++ accepts -g... no checking dependency style of g++... none configure: error: No C++ compiler found. Please install a C++ compiler. What am I missing? Thanks, Chris -- ------------------------------__------------------------------__-------- Odalis: integrated KMS/CMS/DMS/Data-Warehouse and Process Management sym.net <http://sym.net> christoph siefer gotenring 27 50679 koeln 049.(0)221.3762590 email: siefer@sym.net <mailto:siefer@sym.net> net: http://www.sym.net _________________________________________________ Users mailing list Users@lists.geany.org <mailto:Users@lists.geany.org> https://lists.geany.org/cgi-__bin/mailman/listinfo/users <https://lists.geany.org/cgi-bin/mailman/listinfo/users>
-- The healthy eating pyramid as published by the USDA and it's satellites all over the world is purposely designed to bring about an epidemic of obesity, hypertension and diabetes. It is wildly successful in this aim.
Users mailing list Users@lists.geany.org https://lists.geany.org/cgi-bin/mailman/listinfo/users
Cheers,
Chris