[ 
https://issues.apache.org/jira/browse/AXIS2C-922?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12561740#action_12561740
 ] 

hoodoo99 edited comment on AXIS2C-922 at 1/23/08 9:17 AM:
------------------------------------------------------------

I just got the latest source code from svn and built the debug version again.  
If I put /MDd in the CFLAGS I get the crash, and if I take it out everything 
works fine.  I am building with Visual Studio .NET 2003.  The 
axis2_http_server.exe program crashes immediately when it is started in 
getopt_windows.c as described in my last comment.

-Dave.

      was (Author: hoodoo99):
    I just got the latest source code from svn and built the debug version 
again.  If I put i/MDd in the CFLAGS I get the crash, and if I take it out 
everything works fine.  I am building with Visual Studio .NET 2003.  The 
axis2_http_server.exe program crashes immediately when it is started in 
getopt_windows.c as described in my last comment.

-Dave.
  
> axis2_http_server.exe crashes in axis2_getopt
> ---------------------------------------------
>
>                 Key: AXIS2C-922
>                 URL: https://issues.apache.org/jira/browse/AXIS2C-922
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: build system (Windows)
>    Affects Versions: 1.2.0
>         Environment: Windows XP
>            Reporter: Dave Meier
>
> Crashes on this line:
> if (optind >= __argc || *(pos = __argv[optind]) != '-')
> I changed the makefile and was able to get it to work.  Changed to the 
> following:
> !if "$(DEBUG)" == "1"
> CFLAGS = $(CFLAGS) /D "_DEBUG" /Od /Z7
> LDFLAGS = $(LDFLAGS) /DEBUG /INCREMENTAL /NODEFAULTLIB:LIBCMTD.lib
> !else
> CFLAGS = $(CFLAGS) /D "NDEBUG" /O2 /MT
> LDFLAGS = $(LDFLAGS)
> !endif
> Basically for the DEBUG case, I removed the  $(CRUNTIME)d from CFLAGS and 
> added back the /NODEFAULTLIB:LIBCMTD.lib to LDFLAGS that was there in 1.1.  
> Also changed $(CRUNTIME) to /MT for the release mode CFLAGS.
> In my configure.in, I had CRUNTIME=/MD

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to