• Join
  • Sign In with my.TI Login
Texas Instruments
  • Products
  • Applications
  • Tools & Software
  • Support & Community
  • Sample & Buy
  • About TI
Sample & Purchase Cart Sample & Purchase Cart
  • Search
  • Advanced
TI E2E™ Community
  • Support Forums
  • Blogs
  • Groups
  • Videos
  • 简体中文
  • More ...
TI Home » TI E2E Community » Support Forums » Development Tools » Code Composer Studio » Code Composer Forum » __LINE__ and __FILE__ give "Syntax Error" in CCS Editor perspectives.
Share
Code Composer Studio
  • Forum
  • Announcements
Options
  • Subscribe via RSS
Common Questions
  • Code Composer Studio Forum Usage Guidelines

  • Resources
  • Code Composer Studio (CCStudio) Product Folder
  • Troubleshooting CCS
  • CCS Wiki
  • Download CCS
  • Order CCS
  • Tools Insider Blog
  • Bug Tracking
  • __LINE__ and __FILE__ give "Syntax Error" in CCS Editor perspectives.

    __LINE__ and __FILE__ give "Syntax Error" in CCS Editor perspectives.

    This question is answered
    David Turner80909
    Posted by David Turner80909
    on Aug 04 2011 05:27 AM
    Prodigy30 points

    The use of the predefined macros __LINE__ and __FILE__ (and probably __DATE__, etc) generate "syntax error" warning indicators in the editor perspectives.  This can easily be demonstrated with the following:

            printf ("__LINE__: %d, __FILE__: %s\n", __LINE__, __FILE__);

    The line would be flagged as having a syntax error in the margins and underlined in yellow.

    We are using a similar printf statement in a custom ASSERT macro which is used in many places and thus indicate many syntax errors.  It is our policy to try to remove all warnings from the code and these "FALSE" warnings hinder this (and clutters the source display).

    It appears that the editors are treating __LINE__ and __FILE__ as empty macros which then cause the syntax error.  Work-around-s of defining values for __LINE__ and __FILE__ remove the syntax error warning but then cause compiler errors when the code is compiled.

    The compiler properly handles these and produces no warnings and properly values __LINE__ and __FILE__.

    CCS 5
    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    All Replies
    • AartiG
      Posted by AartiG
      on Aug 04 2011 21:21 PM
      Verified Answer
      Verified by Ki-Soo Lee
      Guru69085 points

      Please take a look at this post which talks about such syntax errors as reported by the Eclipse CDT parser and how to turn it off. Hope this helps.


      If a post answers your question please mark it with the "Verify Answer" button

      Search the wikis for common questions: CGT, BIOS,  CCSv3, CCSv4
      Track a known bug with SDOWP. Enter the bug id in the "Find Record ID" box

      Report Abuse
      • Reply
      You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    • Aaron Schlicht
      Posted by Aaron Schlicht
      on Feb 27 2012 11:33 AM
      Prodigy20 points

      We use __LINE__ and __FILE__ in our assert macro. To workaround eclipse flagging a syntax error, I added the following to our assert macro header file:

      #ifndef __TI_COMPILER_VERSION__
      #define __LINE__ 0
      #define __FILE__ "\0"
      #endif
      
      

      You can replace __TI_COMPILER_VERSION__ with any of your compiler pre-defined macros. See this post for getting a list of the compiler pre-defined macros with a null C program.

      http://e2e.ti.com/support/development_tools/compiler/f/343/t/84818.aspx#292631

      Report Abuse
      • Reply
      You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    • Patrick Chuong
      Posted by Patrick Chuong
      on Feb 27 2012 21:59 PM
      Expert6970 points

      These two macros are known issue and should be fixed in CCS5.2 update.

      Regards,
      Patrick 

      Report Abuse
      • Reply
      You have posted to a forum that requires a moderator to approve posts before they are publicly available.
    TI E2E™ Community
    • Support Forums
    • Blogs
    • Videos
    • Groups
    • Site Support & Feedback
    • Settings
    TI E2E™ Community Groups
    • TI University Program
    • Make the Switch
    • Microcontroller Projects
    • Motor Drive & Control
    Other Communities
    • Deyisupport
    • Designsomething.org
    • beagleboard.org
    • TI on Element 14
    • TI on TechXchangeSM
    Other Technical & Support Resources
    • WEBENCH® Design Center
    • Product Information Centers
    • Technical Documents
    • TI Design Network
    • TI Technical Articles
    • TI Training

    All content and materials on this site are provided "as is". TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with regard to these materials, including but not limited to all implied warranties and conditions of merchantability, fitness for a particular purpose, title and non-infringement of any third party intellectual property right. TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with respect to these materials. No license, either express or implied, by estoppel or otherwise, is granted by TI. Use of the information on this site may require a license from a third party, or a license from TI.

    Content on this site may contain or be subject to specific guidelines or limitations on use. All postings and use of the content on this site are subject to the Terms of Use of the site; third parties using this content agree to abide by any limitations or guidelines and to comply with the Terms of Use of this site. TI, its suppliers and providers of content reserve the right to make corrections, deletions, modifications, enhancements, improvements and other changes to the content and materials, its products, programs and services at any time or to move or discontinue any content, products, programs, or services without notice.

    Follow Us Texas Instruments on Facebook Texas Instruments on Twitter Texas Instruments on LinkedIn Texas Instruments on Google+
    TI Worldwide | Contact Us | my.TI Login | Site Map | Corporate Citizenship | mobile m.ti.com (Mobile Version)

    TI is a global semiconductor design and manufacturing company. Innovate with 100,000+ analog ICs and
    embedded processors, along with software, tools and the industry’s largest sales/support staff.

    © Copyright 1995-2013 Texas Instruments Incorporated. All rights reserved.
    Trademarks | Privacy Policy | Terms of Use