<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>GPS SUPL dependancy issue</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/115348/gps-supl-dependancy-issue</link><description>Hi, 
 I have run into an issue where i get the following: 
 If i&amp;#39;m reading this correctly, it is saying that SUPL_CLIENT_LIB depends on NEWLIB_LIBC being set to y. The problem is, NEWLIB_LIBC is being set to y. As seen below, this is my current proj.conf</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 17 Oct 2024 22:54:38 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/115348/gps-supl-dependancy-issue" /><item><title>RE: GPS SUPL dependancy issue</title><link>https://devzone.nordicsemi.com/thread/506795?ContentTypeID=1</link><pubDate>Thu, 17 Oct 2024 22:54:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b50348d6-3955-435e-ba73-29bb805fb6ac</guid><dc:creator>HoovinSchoovin</dc:creator><description>&lt;p&gt;To fix the issue, I change the kconfig file under the supl directory:&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;config SUPL_CLIENT_LIB
	bool &amp;quot;SUPL Client library&amp;quot;
	# depends on NEWLIB_LIBC (COMMENTED OUT)
	help
	  A library for accessing A-GNSS data using the SUPL protocol.
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GPS SUPL dependancy issue</title><link>https://devzone.nordicsemi.com/thread/505774?ContentTypeID=1</link><pubDate>Thu, 10 Oct 2024 15:55:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:89f4cc6f-aa6f-498c-9474-c589aa1adc8f</guid><dc:creator>dejans</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;Have you modified your project configuration file prj.conf in NCS v2.7.0 compared to what you posted in your initial question? If yes, could you send it?&lt;br /&gt;&lt;br /&gt;Can you provide working prj.conf that you used in NCS v2.6.1?&lt;br /&gt;Can you provide your build command, build\zephyr\.config file, and full build log when you used NCS v2.7.0?&lt;br /&gt;You can upload files by clicking on Insert -&amp;gt; Image/video/file -&amp;gt; Upload.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Dejan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GPS SUPL dependancy issue</title><link>https://devzone.nordicsemi.com/thread/505640?ContentTypeID=1</link><pubDate>Wed, 09 Oct 2024 23:16:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7ba0c366-c9c3-4e7d-bd32-698caa1345d6</guid><dc:creator>HoovinSchoovin</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/members/dejans"&gt;dejans&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks for getting back to me.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;When using v2.6.1 in the nordic workplace (ie the one located&amp;nbsp;&lt;span class="s1"&gt;/opt/nordic/ncs/v2.6.1/nrf), the GNSS sample works with SUPL with the addition of these in the KCONFIG:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="s1"&gt;&lt;pre class="ui-code" data-mode="text"&gt;CONFIG_GNSS_SAMPLE_SUPL_HOSTNAME=&amp;quot;supl.google.com&amp;quot;
CONFIG_GNSS_SAMPLE_ASSISTANCE_SUPL=y
CONFIG_NEWLIB_LIBC=y&lt;/pre&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="s1"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="s1"&gt;I also tried v2.7.0 and got:&lt;pre class="ui-code" data-mode="text"&gt;warning: SUPL_CLIENT_LIB (defined at /Users/saubin/Desktop/xws/nrf/lib/supl/Kconfig:7) has direct dependencies NEWLIB_LIBC with value n, but is currently being y-selected by the following symbols:
 - GNSS_SAMPLE_ASSISTANCE_SUPL (defined at /Users/saubin/Desktop/xws/agmuster/lib/gps/Kconfig:107), with value y, direct dependencies &amp;lt;choice&amp;gt; (value: y), and select condition &amp;lt;choice&amp;gt; (value: y)

error: Aborting due to Kconfig warnings&lt;/pre&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="s1"&gt;I find the warnings very weird since I am setting&amp;nbsp;&lt;/span&gt;&lt;span&gt;CONFIG_NEWLIB_LIBC&lt;/span&gt;&lt;span&gt;=y. The app is based on the NCS GNSS example, where the GPS logic is converted into a library.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Is there any way to check&amp;nbsp;&amp;nbsp;CONFIG_NEWLIB_LIBC is being assigned to y or if there are any other places in the code&amp;nbsp;CONFIG_NEWLIB_LIBC is being forced to n?&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks for taking the time!&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GPS SUPL dependancy issue</title><link>https://devzone.nordicsemi.com/thread/505542?ContentTypeID=1</link><pubDate>Wed, 09 Oct 2024 11:46:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ebc7c8cb-7616-4eb1-82de-caecad99eee5</guid><dc:creator>dejans</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;Can you provide more information about your application? Is it based on any of the NCS samples?&lt;/p&gt;
[quote user=""]I have not had these problems outside of v2.6.1, could it be an&amp;nbsp;issue with the current firmware?[/quote]
&lt;p&gt;Have you tried using other NCS versions? Did your application work in any other NCS version except for v2.6.1?&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Dejan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>