[
https://issues.apache.org/jira/browse/AXIS2C-1110?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12590190#action_12590190
]
Senaka Fernando commented on AXIS2C-1110:
-----------------------------------------
Hi Pim,
I see your intention. OK, can't this be done by modifying the AXIS2_LIB_SUFFIX
?? And,
1. Is it required to have debug and release builds in parallel? Because Axis2/C
can only handle one instance of a server at a time for a given repo. Because we
have one axis2.xml. Parallel builds will require duplicate repos, which will in
return be similar to two separate builds.
2. If you like to do a realtime switch, why not build it in to two locations.
You'll only need a wrapper above the build.bat to do this. So that you'll have
a folder wise separation. Changing your axis2 instance will involve just the
modification of the environment variable.
Regards,
Senaka
> Support debug and release versions
> ----------------------------------
>
> Key: AXIS2C-1110
> URL: https://issues.apache.org/jira/browse/AXIS2C-1110
> Project: Axis2-C
> Issue Type: Improvement
> Components: util
> Affects Versions: 1.3.0
> Environment: windows, VS.2005
> Reporter: Pim Philipse
> Original Estimate: 24h
> Remaining Estimate: 24h
>
> Modify axutil_dll_desc_create_platform_specific_dll_name() as follows:
> temp_name = axutil_stracat(env, AXIS2_LIB_PREFIX, class_name);
> #ifdef _DEBUG
> {
> axis2_char_t *temp_name2 = axutil_stracat(env, temp_name, "D");
> dll_desc->dll_name = axutil_stracat(env, temp_name2,
> AXIS2_LIB_SUFFIX);
> AXIS2_FREE(env->allocator, temp_name2);
> }
> #else
> dll_desc->dll_name = axutil_stracat(env, temp_name, AXIS2_LIB_SUFFIX);
> #endif
> Then modify the build system for the debug build to generate dll's with names
> that differ from the release version by a trailing D.
--
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]