Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
ADMB 9.0.202 release announcement
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Johnoel Ancheta  
View profile  
 More options Apr 20 2009, 10:11 pm
From: Johnoel Ancheta <john...@hawaii.edu>
Date: Mon, 20 Apr 2009 16:11:57 -1000
Local: Mon, Apr 20 2009 10:11 pm
Subject: [ADMB Users] ADMB 9.0.202 release announcement

Hi all,

A new version of ADMB 9.0.202 is now available for download at

http://admb-project/downloads

Installation instructions can be found at

http://admb-project/documentation

For questions and support, email

us...@admb-project.org

Major Changes from 9.0.65
* ADMB setup windows setup files using Inno Setup Software (http://www.jrsoftware.org/isinfo.php)
* Added support for more compilers
  - Microsoft Visual C++ 2005 (32 bit)
  - Microsoft Visual C++ 2008 (32 bit)
  - Linux Gcc 4.1.2 (32 and 64 bit)
  - Linux Gcc 4.2.4 (32 and 64 bit)
* Corrected issues with windows batch files

ADMB Core Team

_______________________________________________
Users mailing list
Us...@admb-project.org
http://lists.admb-project.org/mailman/listinfo/users


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
JohnS  
View profile  
 More options Apr 21 2009, 2:04 am
From: JohnS <sib...@hawaii.edu>
Date: Mon, 20 Apr 2009 23:04:42 -0700 (PDT)
Local: Tues, Apr 21 2009 2:04 am
Subject: Re: [ADMB Users] ADMB 9.0.202 release announcement
Those URLs should, of course, include the .org suffix:

Dowloads: http://admb-project.org/downloads

Installation: http://admb-project.org/documentation

On Apr 20, 4:11 pm, Johnoel Ancheta <john...@hawaii.edu> wrote:

_______________________________________________
Users mailing list
Us...@admb-project.org
http://lists.admb-project.org/mailman/listinfo/users

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Broken tpl2cpp in Windows" by Johnoel Ancheta
Johnoel Ancheta  
View profile  
 More options Apr 22 2009, 1:34 am
From: Johnoel Ancheta <john...@hawaii.edu>
Date: Tue, 21 Apr 2009 19:34:57 -1000
Local: Wed, Apr 22 2009 1:34 am
Subject: Re: [ADMB Users] Broken tpl2cpp in Windows

Thanks Arni,

Use link below instead of zip because it contains all the packages needed.

http://code.google.com/p/admb-project/downloads/detail?name=admb-
9.0.202-win32.exe

I will need to update the install documentation for MinGW.

Johnoel

_______________________________________________
Users mailing list
Us...@admb-project.org
http://lists.admb-project.org/mailman/listinfo/users


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Arni Magnusson  
View profile  
 More options Apr 22 2009, 12:40 pm
From: Arni Magnusson <arn...@hafro.is>
Date: Wed, 22 Apr 2009 16:40:28 +0000 (GMT)
Local: Wed, Apr 22 2009 12:40 pm
Subject: Re: [ADMB Users] Broken tpl2cpp in Windows
I finally found the problem. The broken tpl2cpp in ADMB for MinGW gets
created from the call:

   gcc -I. -DUX mylex.c -otpl2cpp

The -DUX should only be used when compiling mylex.c->tpl2cpp on Linux. In
mylex.c, Dave Fournier defined a macro called UX that helps the compiler
choose the right lines of code, depending on whether mylex.c is being
compiled on Windows or Linux. By using -DUX it calls things appropriate
for Linux, while bypassing the code intended for Windows. In other words,
a healthy tpl2cpp for MinGW should be created with the call

   gcc -I. mylex.c -otpl2cpp

or better still

   gcc -s mylex.c -o tpl2cpp

for a leaner executable.

---

The problem lies in mingw.mak, which currently calls
optg32-rh8-laplace.mak. As the name implies, the latter makefile is
intended for Red Hat 8 Linux and is therefore not appropriate for making
ADMB for Windows.

The solution is to edit mingw.mak so that it calls a makefile intended for
making ADMB for Windows. This is a much better solution than making ADMB
for Windows dependent on cat.exe. Dave Fournier already did the hard work
creating the UX macro to make ADMB for Windows self-contained.

The same corrections need to be made for tpl2rem, which also uses Red Hat
8 Linux makefiles. It looks like the Windows makefiles will be very
similar, except no -DUX.

Quack,

Arni
_______________________________________________
Users mailing list
Us...@admb-project.org
http://lists.admb-project.org/mailman/listinfo/users


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Johnoel Ancheta  
View profile  
 More options Apr 22 2009, 3:21 pm
From: Johnoel Ancheta <john...@hawaii.edu>
Date: Wed, 22 Apr 2009 09:21:28 -1000
Local: Wed, Apr 22 2009 3:21 pm
Subject: Re: [ADMB Users] Broken tpl2cpp in Windows

Thanks Arni,

Created the issue

http://code.google.com/p/admb-project/issues/detail?id=59

Target for next Milestone3.

Johnoel

_______________________________________________
Users mailing list
Us...@admb-project.org
http://lists.admb-project.org/mailman/listinfo/users


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
John Sibert  
View profile  
 More options Apr 22 2009, 6:59 pm
From: John Sibert <sib...@hawaii.edu>
Date: Wed, 22 Apr 2009 12:59:20 -1000
Local: Wed, Apr 22 2009 6:59 pm
Subject: Re: [ADMB Users] Broken tpl2cpp in Windows
Well done, Duxman.
Thanks for making the effort.
John

--
Visit the ADMB project http://admb-project.org/

_______________________________________________
Users mailing list
Us...@admb-project.org
http://lists.admb-project.org/mailman/listinfo/users


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »