From frnkbroz at gmail.com Wed Apr 3 12:19:49 2013 From: frnkbroz at gmail.com (Frank Broz) Date: Wed, 3 Apr 2013 17:19:49 +0100 Subject: [Olympus developers 391]: compiling DateTime agent in VS10 Message-ID: Hello, I recently downloaded olympus, and I'm trying to build it and test tutorial 1 with a text-based interface. I'm compiling using visual studio 2010 on a 32-bit windows 7 machine. Olympus (using the vs2010 branch from the repository) seems to build successfully, except for the DateTime agent. I converted the VS .rule file for flex and bison into a VS10 .target file, and that seems to generate the source files correctly. However, I'm having linking errors. I'm hoping that someone who is more familiar with flex and bison than I am can point out what additional changes I need to make. Cheers, Frank Here is the relevant portion of the build log: Project "C:\Projects\OlympusVS10\build\cmake\Olympus.sln" (1) is building "C:\Projects\OlympusVS10\build\cmake\Agents\DateTime\DateTime.vcxproj.metaproj" (25) on node 1 (default targets). Project "C:\Projects\OlympusVS10\build\cmake\Agents\DateTime\DateTime.vcxproj.metaproj" (25) is building "C:\Projects\OlympusVS10\build\cmake\Agents\DateTime\DateTime.vcxproj" (26) on node 1 (default targets). InitializeBuildStatus: Touching "DateTime.dir\Release\DateTime.unsuccessfulbuild". CustomBuild: All outputs are up-to-date. ClCompile: C:\Program Files\Microsoft Visual Studio 10.0\VC\bin\CL.exe /c /IC:/Projects/OlympusVS10/Libraries/Galaxy/include /IC:/Projects/OlympusVS10/Libraries/Galaxy/contrib/MITRE/utilities /nologo /W3 /WX- /O2 /Ob2 /Oy- /D WIN32 /D _WINDOWS /D NDEBUG /D _CRT_NONSTDC_NO_DEPRECATE /D _CRT_SECURE_NO_WARNINGS /D WIN32 /D "CMAKE_INTDIR=\"Release\"" /D _MBCS /Gm- /MD /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"DateTime.dir\Release\\" /Fd"C:/Projects/OlympusVS10/bin/Release/DateTime.pdb" /Gd /TC /analyze- /errorReport:queue ..\..\..\..\Agents\DateTime\numparse.tab.c /Zm1000 numparse.tab.c bison.simple(377): warning C4013: 'yylex' undefined; assuming extern returning int [C:\Projects\OlympusVS10\build\cmake\Agents\DateTime\DateTime.vcxproj] Link: C:\Program Files\Microsoft Visual Studio 10.0\VC\bin\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Projects\OlympusVS10\bin\Release\DateTime.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\..\..\..\bin\Release\libGalaxy.lib ws2_32.lib /MANIFEST /ManifestFile:"DateTime.dir\Release\DateTime.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /PDB:"C:/Projects/OlympusVS10/bin/Release/DateTime.pdb" /SUBSYSTEM:CONSOLE /STACK:"10000000" /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Projects/OlympusVS10/bin/Release/DateTime.lib" /MACHINE:X86 DateTime.dir\Release\dates.obj DateTime.dir\Release\gal_dt.obj DateTime.dir\Release\numparse.tab.obj DateTime.dir\Release\parse_date_time.obj DateTime.dir\Release\parse_int.obj DateTime.dir\Release\parse_net.obj DateTime.dir\Release\parse_time_range.obj DateTime.dir\Release\log.obj /machine:X86 gal_dt.obj : error LNK2019: unresolved external symbol _parse_number referenced in function _ParseInt [C:\Projects\OlympusVS10\build\cmake\Agents\DateTime\DateTime.vcxproj] parse_date_time.obj : error LNK2001: unresolved external symbol _parse_number [C:\Projects\OlympusVS10\build\cmake\Agents\DateTime\DateTime.vcxproj] parse_int.obj : error LNK2001: unresolved external symbol _parse_number [C:\Projects\OlympusVS10\build\cmake\Agents\DateTime\DateTime.vcxproj] numparse.tab.obj : error LNK2019: unresolved external symbol _yylex referenced in function _yyparse [C:\Projects\OlympusVS10\build\cmake\Agents\DateTime\DateTime.vcxproj] C:\Projects\OlympusVS10\bin\Release\DateTime.exe : fatal error LNK1120: 2 unresolved externals [C:\Projects\OlympusVS10\build\cmake\Agents\DateTime\DateTime.vcxproj] Done Building Project "C:\Projects\OlympusVS10\build\cmake\Agents\DateTime\DateTime.vcxproj" (default targets) -- FAILED. Done Building Project "C:\Projects\OlympusVS10\build\cmake\Agents\DateTime\DateTime.vcxproj.metaproj" (default targets) -- FAILED. -------------- next part -------------- An HTML attachment was scrubbed... URL: From pedrogfrancisco at gmail.com Tue Apr 9 05:53:02 2013 From: pedrogfrancisco at gmail.com (Pedro Francisco) Date: Tue, 9 Apr 2013 10:53:02 +0100 Subject: [Olympus developers 392]: Re: compiling DateTime agent in VS10 In-Reply-To: References: Message-ID: Hi! On Wed, Apr 3, 2013 at 5:19 PM, Frank Broz wrote: > I'm compiling using visual studio 2010 on a 32-bit windows 7 machine. > Olympus (using the vs2010 branch from the repository) seems to build > successfully, except for the DateTime agent. I am not able to help you with that error. I can however say that I was able in the past to compile (but not test) Olympus on a Windows 8 machine with Visual Studio 2012, so I find rather odd you can't with VS2010 and Win7. I did use trunk however and not the vs2010 branch. -- Pedro From aasishp at gmail.com Tue Apr 9 07:33:42 2013 From: aasishp at gmail.com (Aasish Pappu) Date: Tue, 9 Apr 2013 07:33:42 -0400 Subject: [Olympus developers 393]: Re: compiling DateTime agent in VS10 In-Reply-To: References: Message-ID: On vs2010 branch, it looks like datetime has additional dependencies: bison and yacc. They weren't there earlier. May be you want to try Olympus 2.5 tag (/tags/2.5) instead of a branch. On Tue, Apr 9, 2013 at 5:53 AM, Pedro Francisco wrote: > Hi! > > On Wed, Apr 3, 2013 at 5:19 PM, Frank Broz wrote: > > I'm compiling using visual studio 2010 on a 32-bit windows 7 machine. > > Olympus (using the vs2010 branch from the repository) seems to build > > successfully, except for the DateTime agent. > > I am not able to help you with that error. > > I can however say that I was able in the past to compile (but not > test) Olympus on a Windows 8 machine with Visual Studio 2012, so I > find rather odd you can't with VS2010 and Win7. > > I did use trunk however and not the vs2010 branch. > > -- > Pedro > -- Aasish Pappu -------------- next part -------------- An HTML attachment was scrubbed... URL: From frnkbroz at gmail.com Fri Apr 12 09:51:15 2013 From: frnkbroz at gmail.com (Frank Broz) Date: Fri, 12 Apr 2013 14:51:15 +0100 Subject: [Olympus developers 394]: Re: compiling DateTime agent in VS10 In-Reply-To: References: Message-ID: Thanks for the suggestions on which version of olympus to try. When I do a checkout (of either the main trunk or the 2.5.0 tag), I get "no such revision" errors for the external repositories for logios, pocketsphinx, and sphinxbase. Have you encountered this? On Tue, Apr 9, 2013 at 12:33 PM, Aasish Pappu wrote: > On vs2010 branch, it looks like datetime has additional dependencies: > bison and yacc. They weren't there earlier. May be you want to try Olympus > 2.5 tag (/tags/2.5) instead of a branch. > > > > > On Tue, Apr 9, 2013 at 5:53 AM, Pedro Francisco > wrote: > >> Hi! >> >> On Wed, Apr 3, 2013 at 5:19 PM, Frank Broz wrote: >> > I'm compiling using visual studio 2010 on a 32-bit windows 7 machine. >> > Olympus (using the vs2010 branch from the repository) seems to build >> > successfully, except for the DateTime agent. >> >> I am not able to help you with that error. >> >> I can however say that I was able in the past to compile (but not >> test) Olympus on a Windows 8 machine with Visual Studio 2012, so I >> find rather odd you can't with VS2010 and Win7. >> >> I did use trunk however and not the vs2010 branch. >> >> -- >> Pedro >> > > > > -- > Aasish Pappu > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pedrogfrancisco at gmail.com Tue Apr 16 06:48:19 2013 From: pedrogfrancisco at gmail.com (Pedro Francisco) Date: Tue, 16 Apr 2013 11:48:19 +0100 Subject: [Olympus developers 395]: Re: compiling DateTime agent in VS10 In-Reply-To: References: Message-ID: I believe it used to work in the past... Here is the current log: $ svn up Updating '.': svn: warning: W200000: Error handling externals definition for 'Libraries/pocketsphinx': svn: warning: W170000: URL 'http://cmusphinx.svn.sourceforge.net/svnroot/cmusphinx/branches/pocketsphinx-0.5/pocketsphinx' at revision 0 doesn't exist svn: warning: W200000: Error handling externals definition for 'Libraries/sphinxbase': svn: warning: W170000: URL 'http://cmusphinx.svn.sourceforge.net/svnroot/cmusphinx/branches/pocketsphinx-0.5/sphinxbase' at revision 0 doesn't exist Fetching external item into 'Agents/VoIP/pjproject-1.4': svn: warning: W175002: Unable to connect to a repository at URL 'https://www.portaudio.com/repos/portaudio/trunk' At revision 4475. svn: warning: W200000: Error handling externals definition for 'Tools/logios': svn: warning: W160006: No such revision 10760 At revision 4408. svn: E205011: Failure occurred processing one or more externals definitions On Fri, Apr 12, 2013 at 2:51 PM, Frank Broz wrote: > Thanks for the suggestions on which version of olympus to try. When I do a > checkout (of either the main trunk or the 2.5.0 tag), I get "no such > revision" errors for the external repositories for logios, pocketsphinx, and > sphinxbase. Have you encountered this? > > > > On Tue, Apr 9, 2013 at 12:33 PM, Aasish Pappu wrote: >> >> On vs2010 branch, it looks like datetime has additional dependencies: >> bison and yacc. They weren't there earlier. May be you want to try Olympus >> 2.5 tag (/tags/2.5) instead of a branch. >> >> >> >> >> On Tue, Apr 9, 2013 at 5:53 AM, Pedro Francisco >> wrote: >>> >>> Hi! >>> >>> On Wed, Apr 3, 2013 at 5:19 PM, Frank Broz wrote: >>> > I'm compiling using visual studio 2010 on a 32-bit windows 7 machine. >>> > Olympus (using the vs2010 branch from the repository) seems to build >>> > successfully, except for the DateTime agent. >>> >>> I am not able to help you with that error. >>> >>> I can however say that I was able in the past to compile (but not >>> test) Olympus on a Windows 8 machine with Visual Studio 2012, so I >>> find rather odd you can't with VS2010 and Win7. >>> >>> I did use trunk however and not the vs2010 branch. >>> >>> -- >>> Pedro >> >> >> >> >> -- >> Aasish Pappu >> > From wilfody2004 at yahoo.com Thu Apr 18 04:40:48 2013 From: wilfody2004 at yahoo.com (Wilfred Onyango Odoyo) Date: Thu, 18 Apr 2013 08:40:48 +0000 (UTC) Subject: [Olympus developers 396]: Invitation to connect on LinkedIn Message-ID: <1066942418.6129723.1366274448676.JavaMail.app@ela4-app0135.prod> LinkedIn ------------ I'd like to add you to my professional network on LinkedIn. - Wilfred Onyango Wilfred Onyango Odoyo Engineer at CrossCert Korea Confirm that you know Wilfred Onyango Odoyo: https://www.linkedin.com/e/94k6gs-hfnoj3m6-4s/isd/12569506767/WPK2AZCj/?hs=false&tok=1jiFdWBtoEtBI1 -- You are receiving Invitation to Connect emails. Click to unsubscribe: http://www.linkedin.com/e/94k6gs-hfnoj3m6-4s/bhNuhU4go_b2MBwRBycwt7FeOBtT5wZBBtd6t5tp7T6E/goo/olympus-developers%40cs%2Ecmu%2Eedu/20061/I4164306822_1/?hs=false&tok=1sBhm6cVoEtBI1 (c) 2012 LinkedIn Corporation. 2029 Stierlin Ct, Mountain View, CA 94043, USA. -------------- next part -------------- An HTML attachment was scrubbed... URL: From invitations at linkedin.com Tue Apr 23 08:07:39 2013 From: invitations at linkedin.com (Wilfred Onyango Odoyo (LinkedIn Invitations)) Date: Tue, 23 Apr 2013 12:07:39 +0000 (UTC) Subject: [Olympus developers 397]: Reminder about your invitation from Wilfred Onyango Odoyo Message-ID: <587175646.11427641.1366718859026.JavaMail.app@ela4-app2436.prod> LinkedIn ------------ This is a reminder that on April 18, Wilfred Onyango Odoyo sent you an invitation to become part of their professional network at LinkedIn. Accept Wilfred Onyango Odoyo's Invitation ---------- On April 18, Wilfred Onyango Odoyo wrote: > To: [olympus-developers at cs.cmu.edu] > From: Wilfred Onyango Odoyo [wilfody2004 at yahoo.com] > Subject: Invitation to connect on LinkedIn > > I'd like to add you to my professional network on LinkedIn. > > - Wilfred Onyango ---------- You are receiving Reminder emails for pending invitations. Click to unsubscribe: http://www.linkedin.com/e/94k6gs-hfv14cum-5c/bhNuhU4go_b2MBwRBycwt7FeOBtT5wZBBtd6t5tp7T6E/goo/olympus-developers%40cs%2Ecmu%2Eedu/20060/I4164306822_1/?hs=false&tok=0YO_uBHhsnARI1 (c) 2012 LinkedIn Corporation. 2029 Stierlin Ct, Mountain View, CA 94043, USA. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ebrahim.bararian at gmail.com Fri Apr 26 02:03:18 2013 From: ebrahim.bararian at gmail.com (Ebrahim Bararian) Date: Fri, 26 Apr 2013 10:33:18 +0430 Subject: [Olympus developers 398]: RoomLine Message-ID: Hello, I have read about the Roomline systemand wanted to download it. but the links provided don't work. Is there anyway to download it? Thanks in advance. -------------- next part -------------- An HTML attachment was scrubbed... URL: From invitations at linkedin.com Tue Apr 30 06:56:00 2013 From: invitations at linkedin.com (Wilfred Onyango Odoyo (LinkedIn Invitations)) Date: Tue, 30 Apr 2013 10:56:00 +0000 (UTC) Subject: [Olympus developers 399]: Reminder about your invitation from Wilfred Onyango Odoyo Message-ID: <496962726.3774703.1367319360182.JavaMail.app@ela4-app3489.prod> LinkedIn ------------ This is a reminder that on April 18, Wilfred Onyango Odoyo sent you an invitation to become part of their professional network at LinkedIn. Accept Wilfred Onyango Odoyo's Invitation ---------- On April 18, Wilfred Onyango Odoyo wrote: > To: [olympus-developers at cs.cmu.edu] > From: Wilfred Onyango Odoyo [wilfody2004 at yahoo.com] > Subject: Invitation to connect on LinkedIn > > I'd like to add you to my professional network on LinkedIn. > > - Wilfred Onyango ---------- You are receiving Reminder emails for pending invitations. Click to unsubscribe: http://www.linkedin.com/e/94k6gs-hg4yn6i8-5c/bhNuhU4go_b2MBwRBycwt7FeOBtT5wZBBtd6t5tp7T6E/goo/olympus-developers%40cs%2Ecmu%2Eedu/20060/I4164306822_1/?hs=false&tok=1zo5SxdrEMKBI1 (c) 2012 LinkedIn Corporation. 2029 Stierlin Ct, Mountain View, CA 94043, USA. -------------- next part -------------- An HTML attachment was scrubbed... URL: From pedrogfrancisco at gmail.com Tue Apr 30 11:52:36 2013 From: pedrogfrancisco at gmail.com (Pedro Francisco) Date: Tue, 30 Apr 2013 16:52:36 +0100 Subject: [Olympus developers 400]: Re: RoomLine In-Reply-To: References: Message-ID: Try (not tested): $ svn checkout http://trac.speech.cs.cmu.edu/repos/olympus/example-systems/RoomLine/trunk/ SVN-RoomLine For a GUI instead of command line, you can use http://tortoisesvn.net/ . On Fri, Apr 26, 2013 at 7:03 AM, Ebrahim Bararian wrote: > Hello, > > I have read about the Roomline systemand wanted to download it. but the > links provided don't work. > Is there anyway to download it? > > Thanks in advance. From pedrogfrancisco at gmail.com Tue Apr 30 11:53:31 2013 From: pedrogfrancisco at gmail.com (Pedro Francisco) Date: Tue, 30 Apr 2013 16:53:31 +0100 Subject: [Olympus developers 401]: Re: RoomLine In-Reply-To: References: Message-ID: A space was missing: $ svn checkout http://trac.speech.cs.cmu.edu/repos/olympus/example-systems/RoomLine/trunk/ SVN-RoomLine From ebrahim.bararian at gmail.com Tue Apr 30 12:52:40 2013 From: ebrahim.bararian at gmail.com (Ebrahim Bararian) Date: Tue, 30 Apr 2013 21:22:40 +0430 Subject: [Olympus developers 402]: Re: RoomLine In-Reply-To: References: Message-ID: thanks. I have another question. Is it possible to connect roomline to PSTN phone? On Tue, Apr 30, 2013 at 8:23 PM, Pedro Francisco wrote: > A space was missing: > > $ svn checkout > http://trac.speech.cs.cmu.edu/repos/olympus/example-systems/RoomLine/trunk/ > SVN-RoomLine > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pedrogfrancisco at gmail.com Tue Apr 30 13:04:26 2013 From: pedrogfrancisco at gmail.com (Pedro Francisco) Date: Tue, 30 Apr 2013 18:04:26 +0100 Subject: [Olympus developers 403]: Re: RoomLine In-Reply-To: References: Message-ID: On Tue, Apr 30, 2013 at 5:52 PM, Ebrahim Bararian wrote: > I have another question. Is it possible to connect roomline to PSTN phone? I don't know. I know Roomline is accessible through a phone number ( http://www.cs.cmu.edu/~dbohus/ravenclaw-olympus/roomline.html ) but I have no idea about the underlying technology used. From Alex.Rudnicky at cs.cmu.edu Tue Apr 30 13:58:37 2013 From: Alex.Rudnicky at cs.cmu.edu (Alex Rudnicky) Date: Tue, 30 Apr 2013 13:58:37 -0400 Subject: [Olympus developers 404]: Re: RoomLine In-Reply-To: References: Message-ID: <11B6FA6BC9879A42BE5A6227C05F3E1F0288BA08BB1A@EXCH-MB-1.srv.cs.cmu.edu> The original Roomline, Communicator, etc systems were connected to the phone system using special-purpose hardware that handled echo cancellation and so on. Today there are a number of alternative solutions available. Take a look at the VoIP code in the repository. There is also some Skype interface code. I believe a Freeswitch interface also exists. Alex -----Original Message----- From: olympus-developers-bounces at mailman.srv.cs.cmu.edu [mailto:olympus-developers-bounces at mailman.srv.cs.cmu.edu] On Behalf Of Pedro Francisco Sent: Tuesday, April 30, 2013 1:04 PM To: Ebrahim Bararian Cc: olympus-developers Subject: [Olympus developers 403]: Re: RoomLine On Tue, Apr 30, 2013 at 5:52 PM, Ebrahim Bararian wrote: > I have another question. Is it possible to connect roomline to PSTN phone? I don't know. I know Roomline is accessible through a phone number ( http://www.cs.cmu.edu/~dbohus/ravenclaw-olympus/roomline.html ) but I have no idea about the underlying technology used. From ebrahim.bararian at gmail.com Tue Apr 30 14:29:37 2013 From: ebrahim.bararian at gmail.com (Ebrahim Bararian) Date: Tue, 30 Apr 2013 22:59:37 +0430 Subject: [Olympus developers 405]: Re: RoomLine In-Reply-To: <11B6FA6BC9879A42BE5A6227C05F3E1F0288BA08BB1A@EXCH-MB-1.srv.cs.cmu.edu> References: <11B6FA6BC9879A42BE5A6227C05F3E1F0288BA08BB1A@EXCH-MB-1.srv.cs.cmu.edu> Message-ID: Thanks. But it is not possible to download communicator.( http://www.speech.cs.cmu.edu/Communicator/Communicator/downloads.html) the named alternatives are for VOIP connection which are not what I want. So is it possible to use another module for connecting the roomline to the PSTN. for instance via a telephony card? I think the telephony cards prepare some interface for connecting to the PSTN. I am wondered why sphinx2 is not replaced with the sphinx4 as it is more robust and handles OOV. On Tue, Apr 30, 2013 at 10:28 PM, Alex Rudnicky wrote: > The original Roomline, Communicator, etc systems were connected to the > phone system using special-purpose hardware that handled echo cancellation > and so on. Today there are a number of alternative solutions available. > Take a look at the VoIP code in the repository. There is also some Skype > interface code. I believe a Freeswitch interface also exists. > > Alex > > > -----Original Message----- > From: olympus-developers-bounces at mailman.srv.cs.cmu.edu [mailto: > olympus-developers-bounces at mailman.srv.cs.cmu.edu] On Behalf Of Pedro > Francisco > Sent: Tuesday, April 30, 2013 1:04 PM > To: Ebrahim Bararian > Cc: olympus-developers > Subject: [Olympus developers 403]: Re: RoomLine > > On Tue, Apr 30, 2013 at 5:52 PM, Ebrahim Bararian < > ebrahim.bararian at gmail.com> wrote: > > I have another question. Is it possible to connect roomline to PSTN > phone? > > I don't know. > I know Roomline is accessible through a phone number ( > http://www.cs.cmu.edu/~dbohus/ravenclaw-olympus/roomline.html ) but I > have no idea about the underlying technology used. > -------------- next part -------------- An HTML attachment was scrubbed... URL: