• 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 » TI C/C++ Compiler » TI C/C++ Compiler - Forum » How to force .init_array function into executable using #pragma RETAIn or any other method.
Share
TI C/C++ Compiler
  • Forum
Options
  • Subscribe via RSS

How to force .init_array function into executable using #pragma RETAIn or any other method.

How to force .init_array function into executable using #pragma RETAIn or any other method.

  • Nitya Ramdas
    Posted by Nitya Ramdas
    on Jul 30 2012 08:49 AM
    Intellectual2725 points

    Here  is a description of the problem.

    I have a library that needs an initialization function to be called before its APIs can be used. Instead of forcing application to call this initialization function, I would like to plug the init function into .pinit (actually .init_array). This way the init function will be called before main. To achieve this I added a C++ file to my application withe the following symbol

        #pragma RETAIN

        volatile int PINIT_FXN = foo_init();

    My problem is that the symbol is not retained in the application. Any ideas on how to achieve this. Please not that I have  a library that contains this symbol. How do I inform the linker without adding any linker options to the application? I want this function to be added to the application if my library is "used".

    Also I would prefer a method that would work across compilers.

    I am using the MSP430 compiler.

    Thanks,

    Nitya Ramdas

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • George Mock
    Posted by George Mock
    on Jul 31 2012 13:32 PM
    Guru51545 points

    Even if the section containing foo_init is retained, that does not mean foo_init gets called before main runs.  There is no standard way to arrange for a user function to be called before main.

    Thanks and regards,

    -George


    TI C/C++ Compiler Forum Moderator
    Please click Verify Answer on the best reply to your question.
    The Compiler Wiki answers most common questions.
    Track an issue with SDOWP. Enter your 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.
  • Nitya Ramdas
    Posted by Nitya Ramdas
    on Jul 31 2012 13:36 PM
    Intellectual2725 points

    I already have an init.cpp  file which causse foo_init to get plugged into the .pinit table. All I need is a way to tell the linker to retain foo_init().

    #pragma RETAIN deos not appera to work...at least on the MSP430 compiler that I am using.

    Nitya

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • adavis
    Posted by adavis
    on Aug 03 2012 10:23 AM
    Prodigy270 points

    The object file containing PINIT_FXN is not being pulled in from the library because PINIT_FXN  is not referenced. You could:

    a) move the definition of PINIT_FXN to the file that implements the API;
    b) add some kind of reference from the API to PINIT_FXN;
    c) use -u PINIT_FXN on the linker command line to synthesize a reference 

    Note that #pragma RETAIN (or its sibling --retain) does not force inclusion from a library; it only prevents the linker from *throwing away* unreferenced objects once they are included.

    -Alan

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Nitya Ramdas
    Posted by Nitya Ramdas
    on Aug 03 2012 10:28 AM
    Intellectual2725 points

    Thanks,

    I am using option c) right now, but I try a) and b).

     

    Thanks,

    Nitya

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Douglas Gwyn
    Posted by Douglas Gwyn
    on Aug 04 2012 23:31 PM
    Expert2060 points

    So what is wrong with

    void main() { foo_init(); /* existing main() statements here */ }

    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