Menu

#175 tcc bug for cpptasks

closed-fixed
cpptasks (103)
5
2006-04-07
2006-04-06
No

tcc task for the cpptasks is generating errors as it
tries to execute tcpp.

The cause is line 83 in the source file:

\src\net\sf\antcontrib\cpptasks\arm\ADSCCompiler.java

79 /**
80 * Singleton for ARM 16-bit C compiler
81 */
82 public static ADSCCompiler getThumbCC() {
83 return tcpp;
84 }

Line 83 should read:

79 /**
80 * Singleton for ARM 16-bit C compiler
81 */
82 public static ADSCCompiler getThumbCC() {
83 return tcc;
84 }

Thanks,
Cassie Sears

Discussion

  • Curt Arnold

    Curt Arnold - 2006-04-07
    • status: open --> closed-fixed
     
  • Curt Arnold

    Curt Arnold - 2006-04-07

    Logged In: YES
    user_id=27193

    Thanks for the report. Typo fixed in rev 1.4.

     

Log in to post a comment.