From klc2572 at students.kennesaw.edu Fri Aug 3 11:10:59 2012 From: klc2572 at students.kennesaw.edu (Keenan Carter) Date: Fri Aug 3 11:11:07 2012 Subject: [libcutl-users] Build of libcutl failed on MingW Message-ID: I tried to build libcutl on MingW and here's what happened. 1. Changed to libcutl directory -- Done OK 2. Executed ./configure --disable-shared --enable-static --host i686-mingw32 --target i686-mingw32 --prefix=/mingw CXXFLAGS="-O2 -W -Wall" -- Done OK 3. Executed make -- Error See below keenan.carter@EID1010 ~/libcutl $ make CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/keenan.carter/libcutl/config /missing --run autoconf /home/keenan.carter/libcutl /e/NoSpacesPaths/MinGW/bin/autoconf-2.68: line 502: /mingw/bin/autom4te-2.68: No such file or directory /e/NoSpacesPaths/MinGW/bin/autoconf-2.68: line 502: exec: /mingw/bin/autom4te-2. 68: cannot execute: No such file or directory make: *** [configure] Error 1 keenan.carter@EID1010 ~/libcutl $ I looked at line 502 in /e/NoSpacesPaths/MinGW/bin/autoconf-2.68, and it say's, exec "$AUTOM4TE" "$@" So, this is set from line 398, and it say's : ${AUTOM4TE='/mingw/bin/autom4te-2.68'} So, it seems that the problem is that it's hard coded to '/mingw/bin/autom4te-2.68' Why isn't this the path to my MingW installation? Should AUTOM4TE get set to my path? -- /e/NoSpacesPaths/MinGW/bin/autom4te-2.68 Plesae help Thanks K. Carter Sr. From boris at codesynthesis.com Fri Aug 3 13:16:00 2012 From: boris at codesynthesis.com (Boris Kolpackov) Date: Fri Aug 3 13:03:44 2012 Subject: [libcutl-users] Build of libcutl failed on MingW In-Reply-To: References: Message-ID: Hi Keenan, Keenan Carter writes: > 2. Executed ./configure --disable-shared --enable-static --host > i686-mingw32 --target i686-mingw32 --prefix=/mingw CXXFLAGS="-O2 -W -Wall" Try removing "--host i686-mingw32 --target i686-mingw32 --prefix=/mingw" from the above command line. You only need --host/--target if you are cross-compiling. And --prefix=/mingw probably won't do you any good (unless you have your MinGW root in /mingw). Boris From klc2572 at students.kennesaw.edu Fri Aug 3 15:52:21 2012 From: klc2572 at students.kennesaw.edu (Keenan Carter) Date: Fri Aug 3 15:52:29 2012 Subject: [libcutl-users] Build of libcutl failed on MingW In-Reply-To: References: Message-ID: Boris, Thanks for replying. Sorry, I replied to you instead of oflibcutl-users@codesynthesis.com so i'm reposting this. I tried ./configure --disable-shared --enable-static CXXFLAGS="-O2 -W -Wall" I got the exact same error. Anything more I could try please. Thanks K. Carter Sr. On Fri, Aug 3, 2012 at 1:16 PM, Boris Kolpackov wrote: > Hi Keenan, > > Keenan Carter writes: > > > 2. Executed ./configure --disable-shared --enable-static --host > > i686-mingw32 --target i686-mingw32 --prefix=/mingw CXXFLAGS="-O2 -W > -Wall" > > Try removing "--host i686-mingw32 --target i686-mingw32 --prefix=/mingw" > from the above command line. You only need --host/--target if you are > cross-compiling. And --prefix=/mingw probably won't do you any good > (unless you have your MinGW root in /mingw). > > Boris > > From boris at codesynthesis.com Mon Aug 6 13:28:22 2012 From: boris at codesynthesis.com (Boris Kolpackov) Date: Mon Aug 6 13:15:35 2012 Subject: [libcutl-users] Build of libcutl failed on MingW In-Reply-To: References: Message-ID: Hi Keenan, Keenan Carter writes: > I tried ./configure --disable-shared --enable-static CXXFLAGS="-O2 -W -Wall" > > I got the exact same error. I think there is something wrong with your MinGW/MSYS setup. Here is what I just tried: 1. Donwload and unpack odb-2.0.0-i686-windows.zip. Besides the ODB compiler, this package also includes a minimal MSYS environment. Start the MSYS shell by executing: odb-2.0.0-i686-windows/mingw/msys.bat 2. In the MSYS shell do: tar xfz libcutl-1.6.3.tar.gz cd libcutl-1.6.3 ./configure --disable-shared --enable-static CXXFLAGS="-O2 -W -Wall" make Everything builds fine. You may want to try this. Boris From klc2572 at students.kennesaw.edu Tue Aug 7 12:01:52 2012 From: klc2572 at students.kennesaw.edu (Keenan Carter) Date: Tue Aug 7 12:02:01 2012 Subject: [libcutl-users] Build of libcutl failed on MingW In-Reply-To: References: Message-ID: Boris, Good call, you're right. In the shell I ran the mount command and it returned, C:\NoSpacesPaths\MinGW on /mingw type user (binmode) This should have been drive E:, I didn't know where/how MingW had initially set up the mount point for /mingw when I installed it, so I just reinstalled it and the mount command returned, E:\NoSpacesPaths\MinGW on /mingw type user (binmode) This time it worked and I was able to build it with no problems. I hope this help anyone else who has a similar problem. Thanks K. Carter Sr. On Mon, Aug 6, 2012 at 1:28 PM, Boris Kolpackov wrote: > Hi Keenan, > > Keenan Carter writes: > > > I tried ./configure --disable-shared --enable-static CXXFLAGS="-O2 -W > -Wall" > > > > I got the exact same error. > > I think there is something wrong with your MinGW/MSYS setup. Here is > what I just tried: > > 1. Donwload and unpack odb-2.0.0-i686-windows.zip. Besides the ODB > compiler, this package also includes a minimal MSYS environment. > Start the MSYS shell by executing: > > odb-2.0.0-i686-windows/mingw/msys.bat > > 2. In the MSYS shell do: > > tar xfz libcutl-1.6.3.tar.gz > cd libcutl-1.6.3 > ./configure --disable-shared --enable-static CXXFLAGS="-O2 -W -Wall" > make > > Everything builds fine. You may want to try this. > > Boris > > > From klc2572 at students.kennesaw.edu Thu Aug 23 11:05:57 2012 From: klc2572 at students.kennesaw.edu (Keenan Carter) Date: Thu Aug 23 11:06:05 2012 Subject: [libcutl-users] Git repository Incomplete/invalid VS project files Message-ID: Hi, I pulled libcult from the git reporistory. I tried to open it in visual studio, it would not work. I took a look at the project file and found lines like: __header_entries__(headers) __source_entries__(sources) cutl-__value__(interface_version)-vc9.dll" etc......... I'm assuming the correct values get filled in at some other point. When? Question. 1. How do I get completed project files from git repository? I.E. version * 1* 1.7.0.a1 , 1.7 , etc... 2. Are there any other differences between the official .zip release files and the git repository? Thanks K. Carter Sr. Kennesaw State University From boris at codesynthesis.com Fri Aug 24 09:03:47 2012 From: boris at codesynthesis.com (Boris Kolpackov) Date: Fri Aug 24 08:47:58 2012 Subject: [libcutl-users] Git repository Incomplete/invalid VS project files In-Reply-To: References: Message-ID: Hi Keenan, Keenan Carter writes: > I pulled libcult from the git reporistory. That's libcutl, not "libcult". > I tried to open it in visual studio, it would not work. I took a look > at the project file and found lines like: > > > > __header_entries__(headers) > > __source_entries__(sources) > > cutl-__value__(interface_version)-vc9.dll" > > etc......... > > I'm assuming the correct values get filled in at some other point. When? > > Question. 1. How do I get completed project files from git repository? I.E. > version * 1* 1.7.0.a1 , 1.7 , etc... > > 2. Are there any other differences between the official .zip > release files and the git repository? See INSTALL-GIT file. Boris From klc2572 at students.kennesaw.edu Fri Aug 24 08:57:33 2012 From: klc2572 at students.kennesaw.edu (Keenan Carter) Date: Fri Aug 24 08:57:41 2012 Subject: [libcutl-users] Git repository Incomplete/invalid VS project files In-Reply-To: References: Message-ID: Awesome! Thank you very much. K. Carter Sr. Kennesaw State University On Fri, Aug 24, 2012 at 9:03 AM, Boris Kolpackov wrote: > Hi Keenan, > > Keenan Carter writes: > > > I pulled libcult from the git reporistory. > > That's libcutl, not "libcult". > > > I tried to open it in visual studio, it would not work. I took a look > > at the project file and found lines like: > > > > > > > > __header_entries__(headers) > > > > __source_entries__(sources) > > > > cutl-__value__(interface_version)-vc9.dll" > > > > etc......... > > > > I'm assuming the correct values get filled in at some other point. When? > > > > Question. 1. How do I get completed project files from git repository? > I.E. > > version * 1* 1.7.0.a1 , 1.7 , etc... > > > > 2. Are there any other differences between the official > .zip > > release files and the git repository? > > See INSTALL-GIT file. > > Boris > From klc2572 at students.kennesaw.edu Sat Aug 25 10:45:33 2012 From: klc2572 at students.kennesaw.edu (Keenan Carter) Date: Sat Aug 25 10:45:41 2012 Subject: [libcutl-users] Problem with INSTALL-GIT instructions for libcutl Message-ID: Tried step #1: Checkout libcutl/libcutl.git Done: OK Tried step #2: cd to root directory of the package. Command: $ cd libcutl Result: keenan@EID1010 ~/libcutl Done: OK Tried step #3: To build the source code simply run make. Command: $ make ERROR: build/bootstrap.make:15: build-0.3/bootstrap.make: No such file or directory make: *** No rule to make target `build-0.3/bootstrap.make'. Stop. Help please. Thanks K. Carter From klc2572 at students.kennesaw.edu Sat Aug 25 13:13:32 2012 From: klc2572 at students.kennesaw.edu (Keenan Carter) Date: Sat Aug 25 13:13:39 2012 Subject: [libcutl-users] =?utf-8?q?Also_Problem_with_INSTALL_instructio?= =?utf-8?q?=E2=80=8Bns_for_libcutl?= Message-ID: Sorry I' asking another question but I'm now trying to build using another method and that does not work either. Tried step #1: Download libcutl-1.6.3.zip Done: OK Tried step #2: Extract to c:\libcutl-1.6.3 Done: OK Tried step #3: Open libcutl-vc10.sln in Visual Studio Done: OK Tried step #4:Selected the desired build configuration "Debug" Done: OK Tried step #5: Selected Build ERROR: Error 1 error C2039: 'str' : is not a member of 'std::tr1::basic_regex<_Elem>' e:\nospacespaths\code synthesis downloads\libcutl-1.6.3\cutl\re\re.cxx 110 1 libcutl-vc10 Error 2 error C2039: 'empty' : is not a member of 'std::tr1::basic_regex<_Elem>' e:\nospacespaths\code synthesis downloads\libcutl-1.6.3\cutl\re\re.cxx 116 1 libcutl-vc10 Help please. Thanks K. Carter From boris at codesynthesis.com Mon Aug 27 08:06:12 2012 From: boris at codesynthesis.com (Boris Kolpackov) Date: Mon Aug 27 07:49:58 2012 Subject: [libcutl-users] Problem with INSTALL-GIT instructions for libcutl In-Reply-To: References: Message-ID: Hi Keenan, Keenan Carter writes: > Tried step #3: To build the source code simply run make. > > Command: $ make > > build/bootstrap.make:15: build-0.3/bootstrap.make: No such file or directory You forgot the crucial step #0: read INSTALL-GIT completely and carefully, including the "Prerequisites" section (it is there for a reason). Boris From boris at codesynthesis.com Mon Aug 27 08:47:04 2012 From: boris at codesynthesis.com (Boris Kolpackov) Date: Mon Aug 27 08:30:43 2012 Subject: [libcutl-users] Also =?utf-8?Q?Problem?= =?utf-8?Q?_with_INSTALL_instructio=E2=80=8Bns?= for libcutl In-Reply-To: References: Message-ID: Hi Keenan, Keenan Carter writes: > Error 1 error C2039: 'str' : is not a member of > 'std::tr1::basic_regex<_Elem>' e:\nospacespaths\code synthesis > downloads\libcutl-1.6.3\cutl\re\re.cxx 110 1 libcutl-vc10 > > Error 2 error C2039: 'empty' : is not a member of > 'std::tr1::basic_regex<_Elem>' e:\nospacespaths\code synthesis > downloads\libcutl-1.6.3\cutl\re\re.cxx 116 1 libcutl-vc10 I've fixed this and you can try it in the 1.7.0.a2 pre-release: http://www.codesynthesis.com/download/libcutl/pre-release/ Boris From klc2572 at students.kennesaw.edu Mon Aug 27 10:18:38 2012 From: klc2572 at students.kennesaw.edu (Keenan Carter) Date: Mon Aug 27 10:18:47 2012 Subject: [libcutl-users] Problem with INSTALL-GIT instructions for libcutl In-Reply-To: References: Message-ID: Boris, Thanks for replying. I thought I had read the pre-reqs but I've missed something then.So I'll go back and check everything. Thank you agin. K. Carter Sr. On Mon, Aug 27, 2012 at 8:06 AM, Boris Kolpackov wrote: > Hi Keenan, > > Keenan Carter writes: > > > Tried step #3: To build the source code simply run make. > > > > Command: $ make > > > > build/bootstrap.make:15: build-0.3/bootstrap.make: No such file or > directory > > You forgot the crucial step #0: read INSTALL-GIT completely and carefully, > including the "Prerequisites" section (it is there for a reason). > > Boris > From klc2572 at students.kennesaw.edu Mon Aug 27 10:20:01 2012 From: klc2572 at students.kennesaw.edu (Keenan Carter) Date: Mon Aug 27 10:20:08 2012 Subject: =?UTF-8?Q?Re=3A_=5Blibcutl=2Dusers=5D_Also_Problem_with_INSTALL_instru?= =?UTF-8?Q?ctio=E2=80=8Bns_for_libcutl?= In-Reply-To: References: Message-ID: Boris, I'll get that one. Thank you K. Carter Sr. On Mon, Aug 27, 2012 at 8:47 AM, Boris Kolpackov wrote: > Hi Keenan, > > Keenan Carter writes: > > > Error 1 error C2039: 'str' : is not a member of > > 'std::tr1::basic_regex<_Elem>' e:\nospacespaths\code synthesis > > downloads\libcutl-1.6.3\cutl\re\re.cxx 110 1 libcutl-vc10 > > > > Error 2 error C2039: 'empty' : is not a member of > > 'std::tr1::basic_regex<_Elem>' e:\nospacespaths\code synthesis > > downloads\libcutl-1.6.3\cutl\re\re.cxx 116 1 libcutl-vc10 > > I've fixed this and you can try it in the 1.7.0.a2 pre-release: > > http://www.codesynthesis.com/download/libcutl/pre-release/ > > Boris > > From klc2572 at students.kennesaw.edu Mon Aug 27 15:40:27 2012 From: klc2572 at students.kennesaw.edu (Keenan Carter) Date: Mon Aug 27 15:40:35 2012 Subject: =?UTF-8?Q?Re=3A_=5Blibcutl=2Dusers=5D_Also_Problem_with_INSTALL_instru?= =?UTF-8?Q?ctio=E2=80=8Bns_for_libcutl?= In-Reply-To: References: Message-ID: Boris, I tried that fix and I'm getting, Error 1 error C2664: 'std::tr1::basic_regex<_Elem> &std::tr1::basic_regex<_Elem>::assign,std::allocator<_Ty>>(const std::basic_string<_Elem,_Traits,_Ax> &,std::tr1::basic_regex<_Elem>::flag_type)' : cannot convert parameter 2 from 'int' to 'std::tr1::basic_regex<_Elem>::flag_type' e:\nospacespaths\vs10extremeannotationsolutionusingvisualgdb\projects\libcutl-1.7.0.a2\cutl\re\re.cxx 114 1 libcutl-vc10 Error 2 error C2664: 'std::tr1::basic_regex<_Elem> &std::tr1::basic_regex<_Elem>::assign,std::allocator<_Ty>>(const std::basic_string<_Elem,_Traits,_Ax> &,std::tr1::basic_regex<_Elem>::flag_type)' : cannot convert parameter 2 from 'int' to 'std::tr1::basic_regex<_Elem>::flag_type' e:\nospacespaths\vs10extremeannotationsolutionusingvisualgdb\projects\libcutl-1.7.0.a2\cutl\re\re.cxx 137 1 libcutl-vc10 Thanks K. Carter Sr. On Mon, Aug 27, 2012 at 10:20 AM, Keenan Carter < klc2572@students.kennesaw.edu> wrote: > > Boris, > > I'll get that one. > > Thank you > K. Carter Sr. > On Mon, Aug 27, 2012 at 8:47 AM, Boris Kolpackov wrote: > >> Hi Keenan, >> >> Keenan Carter writes: >> >> > Error 1 error C2039: 'str' : is not a member of >> > 'std::tr1::basic_regex<_Elem>' e:\nospacespaths\code synthesis >> > downloads\libcutl-1.6.3\cutl\re\re.cxx 110 1 libcutl-vc10 >> > >> > Error 2 error C2039: 'empty' : is not a member of >> > 'std::tr1::basic_regex<_Elem>' e:\nospacespaths\code synthesis >> > downloads\libcutl-1.6.3\cutl\re\re.cxx 116 1 libcutl-vc10 >> >> I've fixed this and you can try it in the 1.7.0.a2 pre-release: >> >> http://www.codesynthesis.com/download/libcutl/pre-release/ >> >> Boris >> >> > From boris at codesynthesis.com Tue Aug 28 09:03:47 2012 From: boris at codesynthesis.com (Boris Kolpackov) Date: Tue Aug 28 08:47:18 2012 Subject: [libcutl-users] Also =?utf-8?Q?Problem?= =?utf-8?Q?_with_INSTALL_instructio=E2=80=8Bns?= for libcutl In-Reply-To: References: Message-ID: Hi Keenan, Keenan Carter writes: > Error 1 error C2664: 'std::tr1::basic_regex<_Elem> > &std::tr1::basic_regex<_Elem>::assign,std::allocator<_Ty>>(const > std::basic_string<_Elem,_Traits,_Ax> > &,std::tr1::basic_regex<_Elem>::flag_type)' : cannot convert parameter 2 > from 'int' to > 'std::tr1::basic_regex<_Elem>::flag_type' > e:\nospacespaths\vs10extremeannotationsolutionusingvisualgdb\projects\libcutl-1.7.0.a2\cutl\re\re.cxx > 114 1 libcutl-vc10 I've fixed this as well. Try the 1.7.0.a3 pre-release: http://www.codesynthesis.com/download/libcutl/pre-release/ Boris From klc2572 at students.kennesaw.edu Tue Aug 28 14:28:56 2012 From: klc2572 at students.kennesaw.edu (Keenan Carter) Date: Tue Aug 28 14:29:04 2012 Subject: =?UTF-8?Q?Re=3A_=5Blibcutl=2Dusers=5D_Also_Problem_with_INSTALL_instru?= =?UTF-8?Q?ctio=E2=80=8Bns_for_libcutl?= In-Reply-To: References: Message-ID: Boris, Thank you, it's building fine now. K. Carter Sr. Kennesaw State University On Tue, Aug 28, 2012 at 9:03 AM, Boris Kolpackov wrote: > Hi Keenan, > > Keenan Carter writes: > > > Error 1 error C2664: 'std::tr1::basic_regex<_Elem> > > > &std::tr1::basic_regex<_Elem>::assign,std::allocator<_Ty>>(const > > std::basic_string<_Elem,_Traits,_Ax> > > &,std::tr1::basic_regex<_Elem>::flag_type)' : cannot convert parameter 2 > > from 'int' to > > 'std::tr1::basic_regex<_Elem>::flag_type' > > > e:\nospacespaths\vs10extremeannotationsolutionusingvisualgdb\projects\libcutl-1.7.0.a2\cutl\re\re.cxx > > 114 1 libcutl-vc10 > > I've fixed this as well. Try the 1.7.0.a3 pre-release: > > http://www.codesynthesis.com/download/libcutl/pre-release/ > > Boris >