You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(30) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(34) |
Feb
(47) |
Mar
(85) |
Apr
(221) |
May
(116) |
Jun
(53) |
Jul
(17) |
Aug
(55) |
Sep
(63) |
Oct
(35) |
Nov
(71) |
Dec
(24) |
2003 |
Jan
(40) |
Feb
(94) |
Mar
(88) |
Apr
(114) |
May
(25) |
Jun
(38) |
Jul
(47) |
Aug
(56) |
Sep
(43) |
Oct
(152) |
Nov
(73) |
Dec
(26) |
2004 |
Jan
(33) |
Feb
(180) |
Mar
(46) |
Apr
(125) |
May
(58) |
Jun
(6) |
Jul
(23) |
Aug
(14) |
Sep
(11) |
Oct
(12) |
Nov
(13) |
Dec
(31) |
2005 |
Jan
(62) |
Feb
(20) |
Mar
(24) |
Apr
(6) |
May
(8) |
Jun
(5) |
Jul
(2) |
Aug
(12) |
Sep
(6) |
Oct
(3) |
Nov
(6) |
Dec
|
2006 |
Jan
|
Feb
(17) |
Mar
(57) |
Apr
(38) |
May
(36) |
Jun
(31) |
Jul
(13) |
Aug
(35) |
Sep
(19) |
Oct
(50) |
Nov
(36) |
Dec
(44) |
2007 |
Jan
(42) |
Feb
(31) |
Mar
(71) |
Apr
(28) |
May
(45) |
Jun
(8) |
Jul
(52) |
Aug
(38) |
Sep
(20) |
Oct
(11) |
Nov
(6) |
Dec
(8) |
2008 |
Jan
(6) |
Feb
(19) |
Mar
(26) |
Apr
(29) |
May
(1) |
Jun
(12) |
Jul
(15) |
Aug
(20) |
Sep
(36) |
Oct
(9) |
Nov
(7) |
Dec
|
2009 |
Jan
(4) |
Feb
(5) |
Mar
(2) |
Apr
(9) |
May
(23) |
Jun
(4) |
Jul
(1) |
Aug
(2) |
Sep
(1) |
Oct
|
Nov
(2) |
Dec
|
2010 |
Jan
(1) |
Feb
|
Mar
|
Apr
(2) |
May
(2) |
Jun
|
Jul
(2) |
Aug
(1) |
Sep
|
Oct
|
Nov
(2) |
Dec
|
2011 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(10) |
Aug
(2) |
Sep
|
Oct
(1) |
Nov
(1) |
Dec
(3) |
2012 |
Jan
(1) |
Feb
(5) |
Mar
|
Apr
(4) |
May
(2) |
Jun
|
Jul
(2) |
Aug
(2) |
Sep
|
Oct
|
Nov
(1) |
Dec
(3) |
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: leeand00 <lee...@gm...> - 2009-08-20 18:45:38
|
Hello, I've written a custom ANT task for purposes of returning an associated value from a file (that works almost like a hash map): "I11_home.htm", "1683" "I11_office_catalog.htm", "1546" "I11_mixed_catalog.htm", "1673" "I11_approve.htm", "527" "I11_reports.htm", "1547" "I11_history.htm", "1548" "I11_settings.htm", "1549" "I11_pricing.htm", "1550" "I11_edit_imprint.htm", "1551" "I11_review_imprint.htm", "1552" "I11_checkout.htm", "1671" "I11_payment.htm", "1567" "I11_confirm.htm", "1556" The left hand column above contains what the file is currently named. The right hand column above contains what I would like to rename the file to. Now it's my Custom ANT task's job to take an argument of the file name, and return the corresponding file name for ANT to rename it to. In my ANT build.xml file I have <echo>DL List: ${csvDownloadList}</echo> <for list="${csvDownloadList}" param="letter"> <sequential> <!-- Figureout what the file needs to be renamed to --> <XebraCodeRelate fileText="${file.configs.txt}" forFile="@{letter}" property="renameTo" /> <echo> ------------------------------------- </echo> <echo> Renaming file @{letter} to ${renameTo}</echo> <echo> ------------------------------------- </echo> <move file="@{letter}" tofile="${renameTo}" /> <var name="renameTo" unset="true"/> </sequential> </for> Note that ${csvDownloadList} looks like this: 1683,1546,1673,527,1547,1548,1549,1550,1551,1552,1671,1567,1556 However for some reason my <for> loop craps out after renaming one file. It seems to have something to do with my Custom ANT Task not being able to work within a <for> loop. Why is this? Is there some other class besides Task I need to extend to make this work? ----- Thank you, Andrew J. Leer - http://leeand00.tiddlyspot.com/ My Blog -- View this message in context: http://www.nabble.com/Custom-ANT-Task-not-working-in-%3Cfor%3E-loop-tp25067661p25067661.html Sent from the Ant Contrib mailing list archive at Nabble.com. |
From: leeand00 <lee...@gm...> - 2009-08-20 15:41:39
|
Where did you even get version ant-contrib 1.02b? I don't see it on sourceforge. fabien29200 wrote: > > Hi ! > > I just faced the same problem with ant-contrib 1.02b. > The answer is simple, if you open net/sf/antcontrib/antcontrib.properties > file, you'll see that at the end : > > # Tasks Requiring Ant 1.6 or higher > #for=net.sf.antcontrib.logic.For > math=net.sf.antcontrib.math.MathTask > > As you can see, the FOR task is simply commented ... (I don't know why). > Just uncomment the line, update the jar and you're done ! > > > Slickscorp wrote: >> >> Hi, >> >> I am using ant 1.6.5 and am an ant beginner. >> >> I found the ant-contrib tasks which have been very helpful in writing my >> ant script. Now I decide to make use of the <for> task and I get the >> traditional error we've all seen before. >> >> BUILD FAILED >> <path>/build.xml:902: Could not create task or type of type: for. >> >> Simplified code is below, and the failure occurs on the <for> task only. >> Other ant-contrib tasks like <propertyselector, sortlist> shown below, >> have no problem, so its not that the jar file can't be located. I also >> tried cutting and pasting the first example of the <for> task from the >> documentation, but this has the same problem. >> >> <?xml version = '1.0' encoding = 'ISO-8859-1' ?> >> <project name="MY_PROJECT" default="post-install-notes" basedir="." > >> >> <taskdef resource="net/sf/antcontrib/antcontrib.properties"/> >> >> <property name="post-install-notes-1" value="Hello" /> >> <property name="post-install-notes-2" value="World" /> >> >> <target name="post-install-notes" > >> <echo message="POST INSTALL NOTES" /> >> >> <propertyselector property="install-notes" >> match="post-install-notes.*" /> >> <sortlist property="install-notes-sorted" >> value="${install-notes}" /> >> >> <for list="${install-notes-sorted}" param="property-name" > >> <sequential> >> <echo message="@{property-name}" /> >> </sequential> >> </for> >> </target> >> </project> >> >> >> Any help would be appreciated. >> >> -- >> >> This message and any attachments are confidential, proprietary, and may >> be privileged. If this message was misdirected, Barclays Global >> Investors (BGI) does not waive any confidentiality or privilege. If you >> are not the intended recipient, please notify us immediately and destroy >> the message without disclosing its contents to anyone. Any distribution, >> use or copying of this e-mail or the information it contains by other >> than an intended recipient is unauthorized. The views and opinions >> expressed in this e-mail message are the author's own and may not reflect >> the views and opinions of BGI, unless the author is authorized by BGI to >> express such views or opinions on its behalf. All email sent to or from >> this address is subject to electronic storage and review by BGI. >> Although BGI operates anti-virus programs, it does not accept >> responsibility for any damage whatsoever caused by viruses being passed. >> >> -- >> >> Barclays Global Investors Limited is authorized and regulated by The >> Financial Services Authority. Registered in England. Registered >> No:796793. Registered Office: 1 Churchill Place, London E14 5HP. >> >> ------------------------------------------------------------------------- >> Check out the new SourceForge.net Marketplace. >> It's the best place to buy or sell services for >> just about anything Open Source. >> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace >> _______________________________________________ >> Ant-contrib-developers mailing list >> Ant...@li... >> https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers >> >> > > ----- Thank you, Andrew J. Leer - http://leeand00.tiddlyspot.com/ My Blog -- View this message in context: http://www.nabble.com/Ant-contrib-%3Cfor%3E-task-tp16339611p25064513.html Sent from the Ant Contrib mailing list archive at Nabble.com. |
From: Benjamin de D. <ben...@gm...> - 2009-07-01 07:57:55
|
Hi all, I've written a task for my job, to encapsulate microsoft devenv process. I think that : - some other people may be interested, - it's better to integrate it in an open source project, rather than keeping it alone. Of course I have to clean it a little bit and write some unit tests, but I would like to know if you're interested by this idea ? Best regards, Benjamin |
From: Gump I. B. <ge...@gu...> - 2009-06-04 12:00:37
|
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at ge...@gu.... Project ant-contrib-test has an issue affecting its community integration. This issue affects 1 projects, and has been outstanding for 8 runs. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - ant-contrib-test : Useful little Ant tasks Full details are available at: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes] -INFO- Failed with reason build failed The following work was performed: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html Work Name: build_ant-contrib_ant-contrib-test (Type: Build) Work ended in a state of : Failed Elapsed: 39 secs Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-04062009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=04062009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test [Working Directory: /srv/gump/public/workspace/ant-contrib] CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-04062009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-04062009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar --------------------------------------------- [junit] [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.008 sec [junit] [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.056 sec [junit] [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.233 sec [junit] [junit] Testsuite: net.sf.antcontrib.math.MathTest [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec [junit] [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.018 sec [junit] [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 4.93 sec [junit] [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest): FAILED [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead) [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead) [junit] at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79) [junit] [junit] [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED [junit] Testsuite: net.sf.antcontrib.process.LimitTest [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.078 sec [junit] [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.044 sec [junit] [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.056 sec [junit] [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.118 sec [junit] [junit] Testsuite: net.sf.antcontrib.property.VariableTest [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.099 sec [junit] [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.029 sec [junit] BUILD FAILED /srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line: /srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered. Total time: 39 seconds --------------------------------------------- To subscribe to this information via syndicated feeds: - RSS: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml - Atom: http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml ============================== Gump Tracking Only === Produced by Gump version 2.3. Gump Run 11000004062009, vmgump:vmgump-public:11000004062009 Gump E-mail Identifier (unique within run) #32. -- Apache Gump http://gump.apache.org/ [Instance: vmgump] |
From: conficio <Kaj...@Co...> - 2009-04-27 14:19:10
|
Hi there, I hope someone has solved the same problem before. I write an ant task that calls a web service suing apache cxf. I define the classpath in the taskdef and for the exclusive tasks this works fine. However Java 1.6 does include the JAX-WS libraries and CXF wants to use its own. So I need to make sure that my taskdef defines its classapth to overwrite the ant classpath. I have read the FAQ http://ant.apache.org/faq.html regarding junit and style tasks, etc. If I understand correctly this does mean that the ant classloader always delegates first and so finds the JRE classes in classes.jar. Is there any way to change that behavior and have my taskdef overwrite the Global class loader? Kaj -- View this message in context: http://www.nabble.com/How-to-order-the-classpath-for-a-custom-ant-task-tp23257302p23257302.html Sent from the Ant Contrib mailing list archive at Nabble.com. |
From: conficio <Kaj...@Co...> - 2009-04-24 21:47:12
|
Hi there, I hope someone has solved the same problem before. I write an ant task that calls a web service suing apache cxf. I define the classpath in the taskdef and for the exclusive tasks this works fine. However Java 1.6 does include the JAX-WS libraries and CXF wants to use its own. So I need to make sure that my taskdef defines its classapth to overwrite the ant classpath. I have read the FAQ http://ant.apache.org/faq.html regarding junit and style tasks, etc. If I understand correctly this does mean that the ant classloader always delegates first and so finds the JRE classes in classes.jar. Is there any way to change that behavior and have my taskdef overwrite the Global class loader? Kaj -- View this message in context: http://www.nabble.com/How-to-order-the-classpath-for-a-custom-ant-task-tp23225386p23225386.html Sent from the Ant Contrib mailing list archive at Nabble.com. |
From: SourceForge.net <no...@so...> - 2009-04-17 06:00:35
|
Bugs item #2175495, was opened at 2008-10-17 21:19 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2175495&group_id=36177 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: cpptasks Group: v1.0 (example) Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Curt Arnold (carnold) Summary: ld used even though g++ is specified Initial Comment: Using the example from the cpptasks website, I am not able to link. Ant correctly compiles my object, but uses the ld linker instead of g++ causing the build to fail. I attempted to add a linker tag forcing it to use g++... and that did not work. Here is some of the error message: [cc] obj/main.o(.text+0xa5): In function `main': [cc] : undefined reference to `std::basic_ostream<char, std::char_traits<char> >::operator<<(std::basic_ostream<char, std::char_traits<char> >& (*)(std::basic_ostream<char, std::char_traits<char> >&))' [cc] obj/main.o(.eh_frame+0x11): undefined reference to `__gxx_personality_v0' [cc] collect2: ld returned 1 exit status Here is my build.xml: <project name="MainApp" default="compile"> <taskdef resource="cpptasks.tasks"/> <target name="compile"> <mkdir dir="./obj"/> <cc name="g++" outtype="executable" subsystem="console" outfile="./main.exe" objdir="./obj"> <fileset dir="." includes="*.cpp"/> <linker name="g++"/> </cc> </target> </project> I am using cpptasks 1.0 beta 5 with ant 1.7.1 under JDK 6.10. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-04-17 06:00 Message: Where do you put the <cpptasks:linker> ? Can you paste the whole xml ? Thx ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-04-07 13:28 Message: Thanks man for the solution. I was about to go crazy 'cos I couldn't get even a simple hello world to compile with ant. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2008-10-20 22:37 Message: I got this working by adding this: <cpptasks:linker id="LinuxLinker"> <libset libs="stdc++"/> </cpptasks:linker> ... which I shouldn't have to. Using g++ to link should pass the required arguments to ld to link a C++ program. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2175495&group_id=36177 |
From: <mat...@us...> - 2009-03-20 04:28:01
|
Revision: 177 http://ant-contrib.svn.sourceforge.net/ant-contrib/?rev=177&view=rev Author: mattinger Date: 2009-03-20 04:27:52 +0000 (Fri, 20 Mar 2009) Log Message: ----------- Using ivy 2.0 for building now Modified Paths: -------------- ant-contrib/trunk/build.xml Added Paths: ----------- ant-contrib/trunk/ivysettings.xml Removed Paths: ------------- ant-contrib/trunk/ivy-conf.xml Modified: ant-contrib/trunk/build.xml =================================================================== --- ant-contrib/trunk/build.xml 2009-01-30 19:13:35 UTC (rev 176) +++ ant-contrib/trunk/build.xml 2009-03-20 04:27:52 UTC (rev 177) @@ -19,7 +19,7 @@ name="ant-contrib" default="dist" basedir="." - xmlns:ivy="antlib:fr.jayasoft.ivy.ant"> + xmlns:ivy="antlib:org.apache.ivy.ant"> <property file="build.properties" /> @@ -53,7 +53,7 @@ <target name="init" unless="no-ivy"> <path id="ivy.lib.path"> - <fileset dir="lib/ivy/jars" includes="ivy-1.3.1.jar"/> + <fileset dir="lib/ivy/jars" includes="ivy-2.0.0.jar"/> <fileset dir="lib/commons-cli/jars" includes="commons-cli-1.0.jar"/> <fileset dir="lib/commons-codec/jars" includes="commons-codec-1.3.jar"/> <fileset dir="lib/commons-httpclient/jars" includes="commons-httpclient-3.0.1.jar"/> @@ -61,13 +61,13 @@ <fileset dir="lib/oro/jars" includes="oro-2.0.8.jar"/> </path> - <taskdef resource="fr/jayasoft/ivy/ant/antlib.xml" - uri="antlib:fr.jayasoft.ivy.ant" + <taskdef resource="org/apache/ivy/ant/antlib.xml" + uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path"/> </target> <target name="configure" depends="init" unless="no-ivy"> - <ivy:configure file="ivy-conf.xml" /> + <ivy:configure file="ivysettings.xml" /> </target> <target name="resolve" depends="configure" unless="no-ivy"> @@ -75,9 +75,9 @@ </target> <target name="classpath-ivy" depends="resolve" unless="no-ivy"> - <ivy:cachepath id="compile.classpath" type="jar" conf="provided" /> - <ivy:cachepath id="runtime.classpath" type="jar" conf="default" /> - <ivy:cachepath id="test.classpath" type="jar" conf="test" /> + <ivy:cachepath pathid="compile.classpath" type="jar" conf="provided" /> + <ivy:cachepath pathid="runtime.classpath" type="jar" conf="default" /> + <ivy:cachepath pathid="test.classpath" type="jar" conf="test" /> <ivy:cachefileset setid="compile.fileset" type="jar" conf="provided" /> <ivy:cachefileset setid="runtime.fileset" type="jar" conf="default" /> <ivy:cachefileset setid="test.fileset" type="jar" conf="test" /> @@ -156,6 +156,8 @@ </target> <target name="clean"> + <mkdir dir="${target.dir}" /> + <mkdir dir="${dist.dir}" /> <delete includeemptydirs="true"> <fileset dir="${target.dir}" includes="**/*" /> <fileset dir="${dist.dir}" includes="**/*" /> Deleted: ant-contrib/trunk/ivy-conf.xml =================================================================== --- ant-contrib/trunk/ivy-conf.xml 2009-01-30 19:13:35 UTC (rev 176) +++ ant-contrib/trunk/ivy-conf.xml 2009-03-20 04:27:52 UTC (rev 177) @@ -1,19 +0,0 @@ -<ivy-conf> - <properties file="${ivy.conf.dir}/build.properties" /> - - <conf defaultResolver="default-resolver" checkUpToDate="true" /> - - <resolvers> - <filesystem name="local"> - <ivy pattern="${ivy.conf.dir}/lib/[module]/ivy-[revision].xml" /> - <artifact pattern="${ivy.conf.dir}/lib/[module]/[ext]s/[artifact]-[revision].[ext]" /> - </filesystem> - - <ivyrep name="ivyrep" /> - - <chain name="default-resolver"> - <resolver ref="local" /> - </chain> - </resolvers> - -</ivy-conf> Copied: ant-contrib/trunk/ivysettings.xml (from rev 176, ant-contrib/trunk/ivy-conf.xml) =================================================================== --- ant-contrib/trunk/ivysettings.xml (rev 0) +++ ant-contrib/trunk/ivysettings.xml 2009-03-20 04:27:52 UTC (rev 177) @@ -0,0 +1,20 @@ +<settings> + <properties file="${ivy.settings.dir}/build.properties" /> + + <settings defaultResolver="default-resolver" /> + + <resolvers> + <filesystem name="local"> + <ivy pattern="${ivy.conf.dir}/lib/[module]/ivy-[revision].xml" /> + <artifact pattern="${ivy.conf.dir}/lib/[module]/[ext]s/[artifact]-[revision].[ext]" /> + </filesystem> + + + <ibiblio m2compatible="true" name="maven2" /> + + <chain name="default-resolver"> + <resolver ref="local" /> + </chain> + </resolvers> + +</settings> Property changes on: ant-contrib/trunk/ivysettings.xml ___________________________________________________________________ Added: svn:mergeinfo + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: Wang Ting-K. <KF...@mo...> - 2009-03-11 10:05:44
|
Hello, I meet a problem, I wrote a build.xml which use the tag <cpptask:cc> to generate the shared .so I needed. However, it really can generate but will get the error:"undefined symbol:_ZNSs4_Rep11_S_terminalE" ; -rwxr-xr-x 1 s3op5 netop 97462 Mar 11 08:53 libimgdownsample.so_bad -rwxr-xr-x 1 s3op5 netop 98220 Mar 9 08:36 libimgdownsample.so.good and the size is different. the work one I use: g++ -I/data/s3op5/java/jdk1.6.0_12/include -I/data/s3op5/java/jdk1.6.0_12/include/linux -fPIC -shared -Wl,-soname,libimgdownsample.so -o libimgdownsample.so ImgDownSample.cpp -I/usr/local/include/ImageMagick -g -O2 -Wall -W -pthread -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib64 -Wl,--rpath -Wl,/usr/lib64 -lfreetype -lz -L/usr/local/lib -L/usr/local/lib -lMagick++ -lMagickWand -lMagickCore -ltiff -lfreetype -ljpeg -lfontconfig -lX11 -lbz2 -lz -lm -lpthread to generate. my build.xml <project name="hello" default="compile" xmlns:cpptasks="antlib:net.sf.antcontrib.cpptasks"> <target name="javah"> <exec dir="." executable="javah" > <arg line="-classpath . com.motorola.blur.service.common.photos.imaging.ImgDownSample"/> </exec> </target> <target name="compile" depends="javah"> <mkdir dir="target/main/obj"/> <cpptasks:cc outtype="shared" subsystem="console" outfile="imgdownsample" objdir="target/main/obj"> <fileset dir="." includes="*.cpp"/> <cpptasks:compiler name="g++"/> <cpptasks:compilerarg value="-I/data/s3op5/java/jdk1.6.0_12/include"/> <cpptasks:compilerarg value="-I/data/s3op5/java/jdk1.6.0_12/include/linux"/> <cpptasks:compilerarg value="-fPIC"/> <cpptasks:compilerarg value="-I/usr/local/include/ImageMagick"/> <cpptasks:compilerarg value="-g"/> <cpptasks:compilerarg value="-O2"/> <cpptasks:compilerarg value="-Wall"/> <cpptasks:compilerarg value="-W"/> <cpptasks:compilerarg value="-pthread"/> <cpptasks:compilerarg value="-L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib64 -Wl,--rpath -Wl,/usr/lib64 -lfreetype -lz -L/ usr/local/lib"/> <cpptasks:compilerarg value="-L/usr/local/lib -lMagick++ -lMagickWand -lMagickCore -ltiff -lfreetype -ljpeg -lfontconfig -lX11 -lbz2 -lz -lm -lpthread "/> </cpptasks:cc> </target> </project> If you get any idea, please let me know. Thanks Robert Wang |
From: Peter R. <pet...@gm...> - 2009-02-16 18:18:41
|
I mean not ! Peter On Mon, Feb 16, 2009 at 6:12 PM, Peter Reilly <pet...@gm...> wrote: > Use failonerror="true" and failonerror="false" > > Peter > > On Wed, Feb 11, 2009 at 8:32 AM, Furingstad <kl...@fu...> wrote: >> We are implementing the Ant Contrib trycatch task to catch compile errors in >> our build script but for some reason we cant get it to catch our errors. >> >> Any ideas what we are doing wrong? >> >> Our test script: >> >> >> >> <?xml version="1.0" encoding="UTF-8"?> >> <project name="Copille-dbDef" default="cmp-def" >> xmlns:ac="antlib:net.sf.antcontrib"> >> >> <path id="build.class.path"> >> <fileset dir="${proj.externals.dir}/FND"> >> <include name="**/*.jar"/> >> </fileset> >> <pathelement path="${proj.bin.dir}/${be.component}/bindbg"/> >> <pathelement path="${base.root}"/> >> </path> >> <target name="cmp-def" description="Compilling DB Def"> >> <pathconvert property="build.classpath.prop" >> refid="build.class.path" targetos="windows" /> >> <echo message="Current classpath: ${build.classpath.prop}"/> >> >> <ac:for param="obj"> >> <path> >> <fileset >> dir="${proj.src.dir}/${be.component}/src/mvx/db/def"> >> <include name="**/*.java"/> >> </fileset> >> </path> >> >> <sequential> >> <ac:propertyregex override="yes" >> property="obj" input="@{obj}" >> regexp="(.+\\)(.+\.java)" >> replace="\2" >> casesensitive="false" /> >> >> <ac:trycatch property="exception.message" >> reference="exception.ref"> >> <ac:try> >> <javac taskname="compile.def" >> sourcepath="" >> >> srcdir="${proj.src.dir}/${be.component}/src/mvx/db/def" >> destdir="${proj.bin.dir}/${be.component}/bindbg" >> includes="${obj}" >> classpathref="build.class.path" >> compiler="org.eclipse.jdt.core.JDTCompilerAdapter" >> target="1.6" >> source="1.6" >> debug="on" >> failonerror="false" >> fork="no" >> /> >> </ac:try> >> <ac:catch> >> <echo message="Compile error on: ${obj} Error >> message: >> >> ${exception.message}${line.separator}" >> file="${ProjBaseDir}\Compille.error" >> append="true" level="warning" >> /> >> </ac:catch> >> </ac:trycatch> >> </sequential> >> </ac:for> >> </target> >> </project> >> ________________________________ >> View this message in context: Catch compile errors >> Sent from the Ant Contrib mailing list archive at Nabble.com. >> >> ------------------------------------------------------------------------------ >> Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA >> -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise >> -Strategies to boost innovation and cut costs with open source participation >> -Receive a $600 discount off the registration fee with the source code: SFAD >> http://p.sf.net/sfu/XcvMzF8H >> _______________________________________________ >> Ant-contrib-developers mailing list >> Ant...@li... >> https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers >> >> > |
From: Peter R. <pet...@gm...> - 2009-02-16 18:12:05
|
Use failonerror="true" and failonerror="false" Peter On Wed, Feb 11, 2009 at 8:32 AM, Furingstad <kl...@fu...> wrote: > We are implementing the Ant Contrib trycatch task to catch compile errors in > our build script but for some reason we cant get it to catch our errors. > > Any ideas what we are doing wrong? > > Our test script: > > > > <?xml version="1.0" encoding="UTF-8"?> > <project name="Copille-dbDef" default="cmp-def" > xmlns:ac="antlib:net.sf.antcontrib"> > > <path id="build.class.path"> > <fileset dir="${proj.externals.dir}/FND"> > <include name="**/*.jar"/> > </fileset> > <pathelement path="${proj.bin.dir}/${be.component}/bindbg"/> > <pathelement path="${base.root}"/> > </path> > <target name="cmp-def" description="Compilling DB Def"> > <pathconvert property="build.classpath.prop" > refid="build.class.path" targetos="windows" /> > <echo message="Current classpath: ${build.classpath.prop}"/> > > <ac:for param="obj"> > <path> > <fileset > dir="${proj.src.dir}/${be.component}/src/mvx/db/def"> > <include name="**/*.java"/> > </fileset> > </path> > > <sequential> > <ac:propertyregex override="yes" > property="obj" input="@{obj}" > regexp="(.+\\)(.+\.java)" > replace="\2" > casesensitive="false" /> > > <ac:trycatch property="exception.message" > reference="exception.ref"> > <ac:try> > <javac taskname="compile.def" > sourcepath="" > > srcdir="${proj.src.dir}/${be.component}/src/mvx/db/def" > destdir="${proj.bin.dir}/${be.component}/bindbg" > includes="${obj}" > classpathref="build.class.path" > compiler="org.eclipse.jdt.core.JDTCompilerAdapter" > target="1.6" > source="1.6" > debug="on" > failonerror="false" > fork="no" > /> > </ac:try> > <ac:catch> > <echo message="Compile error on: ${obj} Error > message: > > ${exception.message}${line.separator}" > file="${ProjBaseDir}\Compille.error" > append="true" level="warning" > /> > </ac:catch> > </ac:trycatch> > </sequential> > </ac:for> > </target> > </project> > ________________________________ > View this message in context: Catch compile errors > Sent from the Ant Contrib mailing list archive at Nabble.com. > > ------------------------------------------------------------------------------ > Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA > -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise > -Strategies to boost innovation and cut costs with open source participation > -Receive a $600 discount off the registration fee with the source code: SFAD > http://p.sf.net/sfu/XcvMzF8H > _______________________________________________ > Ant-contrib-developers mailing list > Ant...@li... > https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers > > |
From: Furingstad <kl...@fu...> - 2009-02-11 08:32:23
|
We are implementing the Ant Contrib trycatch task to catch compile errors in our build script but for some reason we cant get it to catch our errors. Any ideas what we are doing wrong? Our test script: <?xml version="1.0" encoding="UTF-8"?> <project name="Copille-dbDef" default="cmp-def" xmlns:ac="antlib:net.sf.antcontrib"> <path id="build.class.path"> <fileset dir="${proj.externals.dir}/FND"> <include name="**/*.jar"/> </fileset> <pathelement path="${proj.bin.dir}/${be.component}/bindbg"/> <pathelement path="${base.root}"/> </path> <target name="cmp-def" description="Compilling DB Def"> <pathconvert property="build.classpath.prop" refid="build.class.path" targetos="windows" /> <echo message="Current classpath: ${build.classpath.prop}"/> <ac:for param="obj"> <path> <fileset dir="${proj.src.dir}/${be.component}/src/mvx/db/def"> <include name="**/*.java"/> </fileset> </path> <sequential> <ac:propertyregex override="yes" property="obj" input="@{obj}" regexp="(.+\\)(.+\.java)" replace="\2" casesensitive="false" /> <ac:trycatch property="exception.message" reference="exception.ref"> <ac:try> <javac taskname="compile.def" sourcepath="" srcdir="${proj.src.dir}/${be.component}/src/mvx/db/def" destdir="${proj.bin.dir}/${be.component}/bindbg" includes="${obj}" classpathref="build.class.path" compiler="org.eclipse.jdt.core.JDTCompilerAdapter" target="1.6" source="1.6" debug="on" failonerror="false" fork="no" /> </ac:try> <ac:catch> <echo message="Compile error on: ${obj} Error message: ${exception.message}${line.separator}" file="${ProjBaseDir}\Compille.error" append="true" level="warning" /> </ac:catch> </ac:trycatch> </sequential> </ac:for> </target> </project> -- View this message in context: http://www.nabble.com/Catch-compile-errors-tp21950334p21950334.html Sent from the Ant Contrib mailing list archive at Nabble.com. |
From: SourceForge.net <no...@so...> - 2009-02-08 10:12:43
|
Bugs item #1313421, was opened at 2005-10-05 01:53 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=1313421&group_id=36177 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: cpptasks Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Curt Arnold (carnold) Summary: linker should pass "-arch xxx" argument directly to libtool Initial Comment: For building fat (ppc and i386) libs on Mac OS X, it would be nice if linker worked with the following definition: <linker id="linker" name="gcc"> <linkerarg value="-arch" /> <linkerarg value="ppc" /> <linkerarg value="-arch" /> <linkerarg value="i386" /> </linker> however, the above declaration outputs "libtool -Wl,-arch ppc -Wl,-arch i386 ..." which fails (at least on Mac OS X). It should output "libtool -arch ppc -arch i386 ..." instead. decorateLinkerOption in GccLinker.java should pass the "-arch xxx" to GCC without adding "-Wl" in this case. Ex: public String decorateLinkerOption(StringBuffer buf, String arg) { String decoratedArg = arg; if (arg.length() > 1 && arg.charAt(0) == '-') { switch (arg.charAt(1)) { // // passed automatically by GCC // case 'g' : case 'f' : case 'F' : /* Darwin */ case 'a' : case 'm' : case 'O' : case 'W' : case 'l' : case 'L' : case 'u' : case 'v' : break; default : boolean known = false; for (int i = 0; i < linkerOptions.length; i++) { if (linkerOptions[i].equals(arg)) { known = true; break; } } if (!known) { buf.setLength(0); buf.append("-Wl,"); buf.append(arg); decoratedArg = buf.toString(); } break; } } return decoratedArg; } ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-02-08 10:12 Message: Adding "-arch", to the following files in the linkerOptions Array allows compilation and linking to succeed. src/main/java/net/sf/antcontrib/cpptasks/gcc/GccLinker.java src/main/java/net/sf/antcontrib/cpptasks/gcc/GppLinker.java This is the necessary arguments added to the cc task. <!-- Making of the fat binaries --> <compilerarg value="-arch" if="osx"/> <compilerarg value="i386" if="osx"/> <compilerarg value="-arch" if="osx"/> <compilerarg value="ppc" if="osx"/> <linkerarg value="-arch" if="osx"/> <linkerarg value="i386" if="osx"/> <linkerarg value="-arch" if="osx"/> <linkerarg value="ppc" if="osx"/> kc0dhb_at_gmail_dot_com ---------------------------------------------------------------------- Comment By: David Hoffer (dhoffer) Date: 2007-09-06 13:22 Message: Logged In: YES user_id=872165 Originator: NO What is the status of this? I would like to use cpptasks to build OSX universal binary. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2005-10-05 02:12 Message: Logged In: NO I suppose a better solution would be to add "-arch" as one of the recognized options to linkerOptions, ex: private static String[] linkerOptions = new String[]{"-arch", "-bundle", "-dynamiclib", "-nostartfiles", "-nostdlib", "-prebind", "-s", "-static", "-shared", "-symbolic", "-Xlinker", "--export-all-symbols", "-static-libgcc",}; Is it possible to extend the those options using build.xml as a workaround? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=1313421&group_id=36177 |
From: SourceForge.net <no...@so...> - 2009-02-01 19:44:13
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=6319977 By: beradrian Probably it is a little bit late to answer, but I had the same problem and here it is how I solved it: http://beradrian.wordpress.com/2009/02/01/visual-c-in-ant/. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=113701 |
From: <mat...@us...> - 2009-01-30 19:13:37
|
Revision: 176 http://ant-contrib.svn.sourceforge.net/ant-contrib/?rev=176&view=rev Author: mattinger Date: 2009-01-30 19:13:35 +0000 (Fri, 30 Jan 2009) Log Message: ----------- Updating for ivy 2.0.0 release Modified Paths: -------------- ant-contrib/trunk/build.xml ant-contrib/trunk/ivy.xml ant-contrib/trunk/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java Added Paths: ----------- ant-contrib/trunk/lib/ivy/jars/ivy-2.0.0.jar Removed Paths: ------------- ant-contrib/trunk/lib/ivy/jars/ivy-2.0.0-rc1.jar Modified: ant-contrib/trunk/build.xml =================================================================== --- ant-contrib/trunk/build.xml 2008-10-01 15:18:44 UTC (rev 175) +++ ant-contrib/trunk/build.xml 2009-01-30 19:13:35 UTC (rev 176) @@ -43,7 +43,7 @@ <property name="bcel.jar" value="${m2_repo}/bcel/bcel/${bcel.version}/bcel-${bcel.version}.jar"/> <property name="httpclient.version" value="3.0.1"/> <property name="httpclient.jar" value="${m2_repo}/commons-httpclient/commons-httpclient/${httpclient.version}/commons-httpclient-${httpclient.version}.jar"/> - <property name="ivy.version" value="1.4.1"/> + <property name="ivy.version" value="2.0.0"/> <property name="ivy.jar" value="lib/ivy/jars/ivy-${ivy.version}.jar"/> <property name="junit.version" value="3.8.1"/> <property name="junit.jar" value="${m2_repo}/junit/junit/${junit.version}/junit-${junit.version}.jar"/> Modified: ant-contrib/trunk/ivy.xml =================================================================== --- ant-contrib/trunk/ivy.xml 2008-10-01 15:18:44 UTC (rev 175) +++ ant-contrib/trunk/ivy.xml 2009-01-30 19:13:35 UTC (rev 176) @@ -34,7 +34,7 @@ conf="default->default" /> <dependency org="apache" name="ivy" - rev="2.0.0-rc1" + rev="2.0.0" conf="default->default" /> <dependency org="jayasoft" name="ivy" Deleted: ant-contrib/trunk/lib/ivy/jars/ivy-2.0.0-rc1.jar =================================================================== (Binary files differ) Added: ant-contrib/trunk/lib/ivy/jars/ivy-2.0.0.jar =================================================================== (Binary files differ) Property changes on: ant-contrib/trunk/lib/ivy/jars/ivy-2.0.0.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Modified: ant-contrib/trunk/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java =================================================================== --- ant-contrib/trunk/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java 2008-10-01 15:18:44 UTC (rev 175) +++ ant-contrib/trunk/src/main/java/net/sf/antcontrib/net/Ivy20Adapter.java 2009-01-30 19:13:35 UTC (rev 176) @@ -104,6 +104,7 @@ } } + //task.getProject().addReference("urlimporttask", configure); configure.execute(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: SourceForge.net <no...@so...> - 2009-01-23 13:54:48
|
Bugs item #2531115, was opened at 2009-01-23 07:54 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2531115&group_id=36177 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: website Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Jeff Grigg (jeffgrigg) Assigned to: Nobody/Anonymous (nobody) Summary: "Other tasks" page needs CVS to SVN update Initial Comment: On this page: http://ant-contrib.sourceforge.net/tasks/index.html Contains this HTML: <p>Then you need the Ant-Contrib tasks themselves. As there is no release of these tasks yet, you have to build them from sources. Fortunately this is easy, check out the sources (grab the <code>ant-contrib</code> module from <a href="http://sourceforge.net/cvs/?group_id=36177">CVS</a>), change into the source directory of ant-contrib and type This part: <a href="http://sourceforge.net/cvs/?group_id=36177">CVS</a>) could be changed to... <a href="https://sourceforge.net/svn/?group_id=36177">SVN</a>) Motivation: People looking for Ant-Contrib (like me!) get really confused and have a hard time finding the code to compile. The source code moved. The link to the source code needs to be corrected. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2531115&group_id=36177 |
From: SourceForge.net <no...@so...> - 2009-01-14 10:39:33
|
Bugs item #2506815, was opened at 2009-01-14 10:39 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2506815&group_id=36177 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: cpptasks Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Curt Arnold (carnold) Summary: WindowsPlatform bug - no versioninfo encoded in dll at all Initial Comment: There is a bug with encoding versioninfo to a Windows dll. I found that net.sf.antcontrib.cpptasks.platforms.WindowsPlatform prints out the line VS_VERSION_INFO VERSIONINFO (line 218) where VS_VERSION_INFO constant is not defined, so the generated version resource file will be invalid - hence no version info data are encoded. Either VS_VERSION_INFO should be replaced with value 1 (as per MS documentation VERSIONINFO must be set to 1) or appropriate header file needs to be included (windows.h) in version resource file. Please fix this with next release. Thanks! Regards, Goran gmilosavljevic (at) eu.s4hc.com ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2506815&group_id=36177 |
From: Marcel R. <mr...@ma...> - 2008-11-23 17:12:34
|
Marcel Ruff schrieb: > Hi, > > what is the best approach to use cpptasks > to create a static library for the iPhone ARM processor? > > The Mac OS XCode has a suitable gcc crosscompiler delivered, > how do i configure cpptasks to use this? > It boils down to inject somehow following settings: DEVROOT:=/Developer/Platforms/iPhoneOS.platform/Developer SDKROOT:=$(DEVROOT)/SDKs/iPhoneOS2.0.sdk CPPFLAGS=-I$(SDKROOT)/usr/lib/gcc/arm-apple-darwin9/4.0.1/include/ -I$(SDKROOT)/usr/include/ CFLAGS=$(CPPFLAGS) -arch armv6 -pipe -no-cpp-precomp -isysroot $(SDKROOT) CC=$(DEVROOT)/usr/bin/arm-apple-darwin9-gcc-4.0.1 LD=$(DEVROOT)/usr/bin/ld How is this done? Thanks Marcel > Thanks > Marcel > > -- Marcel Ruff http://www.xmlBlaster.org http://watchee.net Phone: +49 7551 309371 |
From: Marcel R. <mr...@ma...> - 2008-11-23 13:04:57
|
Hi, what is the best approach to use cpptasks to create a static library for the iPhone ARM processor? The Mac OS XCode has a suitable gcc crosscompiler delivered, how do i configure cpptasks to use this? Thanks Marcel -- Marcel Ruff http://www.xmlBlaster.org http://watchee.net |
From: Marcel R. <mr...@ma...> - 2008-11-23 12:56:35
|
Derek Baum schrieb: > HI, > > try looking at > > http://sourceforge.net/tracker/index.php?func=detail&aid=1576291&group_id=36177&atid=416920 > > which contains a patch for this problem. > Thank you, this patch fixes the problem. Curt, could you please apply the patch? Thanks Marcel > Derek > > 2008/11/22 Marcel Ruff <mr...@ma...>: > >> Hi, >> >> I try to link a C++ shared library with cpptasks-1.0b5 >> on Mac OS-X 10.5 with i686-apple-darwin9-gcc-4.0.1 >> >> The command line generated is: >> >> gcc -g -prebind -dynamiclib -o libxmlBlasterClientD.dylib >> ../build.tmp/objCPPD/ThreadImpl.o ... >> >> and fails to link. >> >> When changing on console to >> >> g++ -g -prebind -dynamiclib -o libxmlBlasterClientD.dylib >> ../build.tmp/objCPPD/ThreadImpl.o ... >> >> it links fine. >> >> How can i convince cpptask to use 'g++' instead of 'gcc'? >> Using >> >> <linker name="g++"/> >> >> is ignored (using <linker name="ld"/> however shows 'ld' on command >> line, but fails to link with it). >> >> Thanks >> Marcel >> >> -- >> Marcel Ruff >> http://www.xmlBlaster.org >> http://watchee.net >> -- Marcel Ruff http://www.xmlBlaster.org http://watchee.net |
From: Derek B. <der...@pa...> - 2008-11-23 11:18:40
|
HI, try looking at http://sourceforge.net/tracker/index.php?func=detail&aid=1576291&group_id=36177&atid=416920 which contains a patch for this problem. Derek 2008/11/22 Marcel Ruff <mr...@ma...>: > Hi, > > I try to link a C++ shared library with cpptasks-1.0b5 > on Mac OS-X 10.5 with i686-apple-darwin9-gcc-4.0.1 > > The command line generated is: > > gcc -g -prebind -dynamiclib -o libxmlBlasterClientD.dylib > ../build.tmp/objCPPD/ThreadImpl.o ... > > and fails to link. > > When changing on console to > > g++ -g -prebind -dynamiclib -o libxmlBlasterClientD.dylib > ../build.tmp/objCPPD/ThreadImpl.o ... > > it links fine. > > How can i convince cpptask to use 'g++' instead of 'gcc'? > Using > > <linker name="g++"/> > > is ignored (using <linker name="ld"/> however shows 'ld' on command > line, but fails to link with it). > > Thanks > Marcel > > -- > Marcel Ruff > http://www.xmlBlaster.org > http://watchee.net > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Ant-contrib-developers mailing list > Ant...@li... > https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers > |
From: Marcel R. <mr...@ma...> - 2008-11-22 14:54:20
|
Hi, I try to link a C++ shared library with cpptasks-1.0b5 on Mac OS-X 10.5 with i686-apple-darwin9-gcc-4.0.1 The command line generated is: gcc -g -prebind -dynamiclib -o libxmlBlasterClientD.dylib ../build.tmp/objCPPD/ThreadImpl.o ... and fails to link. When changing on console to g++ -g -prebind -dynamiclib -o libxmlBlasterClientD.dylib ../build.tmp/objCPPD/ThreadImpl.o ... it links fine. How can i convince cpptask to use 'g++' instead of 'gcc'? Using <linker name="g++"/> is ignored (using <linker name="ld"/> however shows 'ld' on command line, but fails to link with it). Thanks Marcel -- Marcel Ruff http://www.xmlBlaster.org http://watchee.net |
From: SourceForge.net <no...@so...> - 2008-11-07 13:02:30
|
Bugs item #2234200, was opened at 2008-11-07 13:02 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2234200&group_id=36177 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: cpptasks Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Curt Arnold (carnold) Summary: Proejct level <compiler> is not allowed taskdef'd from props Initial Comment: Consider the following test.xml script: <?xml version="1.0" encoding="UTF-8"?> <project> <taskdef resource="cpptasks.tasks" /> <taskdef resource="cpptasks.types" /> <compiler id="my.compiler" name="msvc" /> </project> This produces the following error in the latest Ant 1.7.1 (Windows Vista SP1, cygwin bash environment) test.xml:8: Not an actual task, but looks like one for documentation purposes If I change <taskdef resource...> to use antlib.xml or declare compiler task directly like this <typedef name="compiler" classname="net.sf.antcontrib.cpptasks.CompilerDef"/> everything works just fine. WBR, Pavel. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=2234200&group_id=36177 |
From: SourceForge.net <no...@so...> - 2008-11-04 14:19:18
|
Bugs item #1428731, was opened at 2006-02-09 15:08 Message generated for change (Comment added) made by daleanson You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=1428731&group_id=36177 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: logic Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Simon (simonru) Assigned to: Nobody/Anonymous (nobody) Summary: Problem with the Post task Initial Comment: "This task handles cookies correctly, which is useful for websites that set a session id to track logins or whatever. This means that if you do several posts in a row, cookies gathered from the first post will be returned with subsequent posts." This is not working. After I logged in and tried to do another post, I am prompted to log in again. I tried this on http://www.pdatopsoft.com/developers/ Also, is there a way to upload a file with the Post task? Thanks. ---------------------------------------------------------------------- >Comment By: Dale Anson (daleanson) Date: 2008-11-04 06:19 Message: Just to be clear, are you doing the posts within the same build? ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2008-09-24 11:28 Message: Not working for me either. Definitely broken. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=416920&aid=1428731&group_id=36177 |
From: Jörgen 'M. K. <jk...@mn...> - 2008-10-23 12:48:57
|
Hello I want to ask, how active this project is. The actual release is a beta, as far as I can see. What are the plans about releasing a final version? I use ant-contrib in my projects and it is a fine software. That's why I would like this project alive and a stable version released. Greetings, Jörgen Kosche -- Jörgen 'Mnementh' Kosche http://mnementh.de/ |