kasjer opened a new pull request, #597:
URL: https://github.com/apache/mynewt-newt/pull/597

   So far for link time generated tables two symbols
   were create for each table:
   
   pkg.link_tables:
       - foo
   
   would generate link_tables.ld.h with following content
           __foo_start__ = .;
           KEEP(*(.foo))
           KEEP(*(SORT(.foo.*)))
           __foo_end__ = .;
   
   Now additional symbol foo will be generated it will make it more 
straightforward to use link-time tables in source code where table can be 
access directly
   by a name specified in yml
           __foo_start__ = .;
           foo = .;
           KEEP(*(.foo))
           KEEP(*(SORT(.foo.*)))
           __foo_end__ = .;


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to