You are here

MinGW build problem

2 posts / 0 new
Last post
MinGW build problem
#1

I'm trying to build rosetta using MinGW. I installed with

make gcc PLATFORM=MinGW

After about 6 minutes I get this error.

g++ -c -I. -Isrc -Iexternal/include -Isrc/platform/windows/xp/32/x86/gcc -Wall -W -pedantic -Wno-unused-variable -pipe -ffor-scope -fno-exceptions -malign-do uble -ffast-math -funroll-loops -finline-functions -finline-limit=20000 -DNDEBU G -O3 -s -std=c++98 -MMD -MT .gcc.design_structure.d -MF .gcc.design_structure. d -MP design_structure.cc -o .gcc.design_structure.o
In file included from multistate_design.h:12,
from design_structure.cc:64:
ga_seq_opt.h:15:21: warning: hash_map: No such file or directory
In file included from multistate_design.h:12,
from design_structure.cc:64:
ga_seq_opt.h:16: error: `stdext' is not a namespace-name
ga_seq_opt.h:16: error: expected namespace-name before ';' token
ga_seq_opt.h:122: error: expected initializer before '<' token
ga_seq_opt.h:126: error: `MultistateHashMap' does not name a type
ga_seq_opt.h:126: error: extra `;'
make: *** [.gcc.design_structure.o] Error 1

Thu, 2008-08-21 12:22
tlmcraig

Are you using gcc 3.4? If so, can you try "make gcc" again?

> I'm trying to build rosetta using MinGW. I installed with
>
> make gcc PLATFORM=MinGW
>
> After about 6 minutes I get this error.
>
>
> g++ -c -I. -Isrc -Iexternal/include -Isrc/platform/windows/xp/32/x86/gcc -Wall -W -pedantic -Wno-unused-variable -pipe -ffor-scope -fno-exceptions -malign-do uble -ffast-math -funroll-loops -finline-functions -finline-limit=20000 -DNDEBU G -O3 -s -std=c++98 -MMD -MT .gcc.design_structure.d -MF .gcc.design_structure. d -MP design_structure.cc -o .gcc.design_structure.o
> In file included from multistate_design.h:12,
> from design_structure.cc:64:
> ga_seq_opt.h:15:21: warning: hash_map: No such file or directory
> In file included from multistate_design.h:12,
> from design_structure.cc:64:
> ga_seq_opt.h:16: error: `stdext' is not a namespace-name
> ga_seq_opt.h:16: error: expected namespace-name before ';' token
> ga_seq_opt.h:122: error: expected initializer before ' ga_seq_opt.h:126: error: `MultistateHashMap' does not name a type
> ga_seq_opt.h:126: error: extra `;'
> make: *** [.gcc.design_structure.o] Error 1
>

Tue, 2008-08-26 06:35
yiliu