<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 03:57:06 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>MongoDB Jira</title>
    <link>https://jira.mongodb.org</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.7.1</version>
        <build-number>970001</build-number>
        <build-date>13-04-2023</build-date>
    </build-info>


<item>
            <title>[SERVER-21353] Building with system version of libraries</title>
                <link>https://jira.mongodb.org/browse/SERVER-21353</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;I am trying to build MongoDB with system versions of libraries. However it is not possible.&lt;/p&gt;

&lt;p&gt;Some fixes was merged after r3.2.0-rc1 so it is merged in master. But also I would like to be able to build with system version of mozjs.&lt;br/&gt;
However it there is used unpublic functions in src/mongo/scripting/mozjs/valuereader.cpp. I was trying to use new c++11 functions from &amp;lt;locale&amp;gt; and &amp;lt;codecvt&amp;gt;, it is building but with running &apos;mongo&apos; I get some Chinese chars instead of startup warning. What form of data is expected by jsstring?&lt;/p&gt;

&lt;p&gt;Other thing is, that asio is only header &quot;library&quot; and it should be good to check a presence of this header.&lt;/p&gt;

&lt;p&gt;Patch attached.&lt;/p&gt;</description>
                <environment></environment>
        <key id="238408">SERVER-21353</key>
            <summary>Building with system version of libraries</summary>
                <type id="1" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14703&amp;avatarType=issuetype">Bug</type>
                                            <priority id="3" iconUrl="https://jira.mongodb.org/images/icons/priorities/major.svg">Major - P3</priority>
                        <status id="6" iconUrl="https://jira.mongodb.org/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="9">Done</resolution>
                                        <assignee username="mark.benvenuto@mongodb.com">Mark Benvenuto</assignee>
                                    <reporter username="mskalick">Marek Skalick&#253;</reporter>
                        <labels>
                    </labels>
                <created>Mon, 9 Nov 2015 12:20:54 +0000</created>
                <updated>Wed, 5 Apr 2017 16:44:28 +0000</updated>
                            <resolved>Fri, 11 Nov 2016 15:55:33 +0000</resolved>
                                    <version>3.2.0-rc1</version>
                                                    <component>Build</component>
                    <component>JavaScript</component>
                                        <votes>0</votes>
                                    <watches>9</watches>
                                                                                                                <comments>
                            <comment id="1480805" author="mark.benvenuto" created="Thu, 19 Jan 2017 22:29:11 +0000"  >&lt;p&gt;In terms of third-party libraries, we have made minor compile fixes to many of them. In terms of substantive changes, in addition Asio, and MozjS, these are the ones we made feature changes.&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;gperftools - We disable some of the caching for larger bucket sizes.&lt;/li&gt;
	&lt;li&gt;mozjs - Additional work to handle x64 Solaris and Linux ARM64 Virtual Address space layout (&lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-24400&quot; title=&quot;Backport SpiderMonkey fix for aarch64&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-24400&quot;&gt;&lt;del&gt;SERVER-24400&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-22927&quot; title=&quot;mongo dies with Segmentation fault in Solaris 11.3 / Illumos February 2016&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-22927&quot;&gt;&lt;del&gt;SERVER-22927&lt;/del&gt;&lt;/a&gt;).&lt;/li&gt;
	&lt;li&gt;S2 - We have made minor random enhancements.&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;For Gperftools, we should be doing a configure check for the GetThreadCacheSize function now or simply remove MONGO_HAVE_GPERFTOOLS_GET_THREAD_CACHE_SIZE altogether but this is not a significant issue. The Gperftools reporting enhancements we depend on are upstream, we just need to clean up our code&lt;/p&gt;

&lt;p&gt;On the MozJS, yes the benefit is that portability across architectures is handled by the OS vendor instead the application vendor. We simply give up some robust OOM handling which really is a rather rare case.&lt;/p&gt;

&lt;p&gt;On ICU, supporting the system version of this was a specific case we debated internally. From MongoDB&apos;s perspective, we wanted to ensure that the MongoDB data files were portable across machines and versions. For instance, the WiredTiger storage format is always little endian regardless of host architecture. For MMapV1, it is only officially supported on little endian (we know its files are not endian portable though) . For ICU, we persist the collation sort keys into our collections for performance (memcmp is cheaper then comparing strings using a collator at runtime). Since sort keys are not stable across ICU versions, we did not want to risk the user using a different version of ICU and getting wrong results as a result. This also means MongoDB will be very reluctant to upgrade ICU in the future without being able to provide side-by-side support for the collations in icu4c-57.1.&lt;/p&gt;

&lt;p&gt;Most of the support for using system icu exists because we used the system version during development before we vendored ICU into our tree. We do have any immediate plans to fix or remove the flag though. &lt;/p&gt;

&lt;p&gt;We release across a wide range of Linux variants (11 distro/version pairs at the moment across up to 4 architectures) so the library vendoring helps us isolate ourselves from these OS differences. On the other hand, we do not vendor all libraries such as OpenSSL (a pain point due to many different system versions), or the additional libraries our enterprise product depends on. All of us appreciate your patch for supporting OpenSSL 1.1.0.&lt;/p&gt;</comment>
                            <comment id="1478924" author="mskalick" created="Wed, 18 Jan 2017 13:17:22 +0000"  >&lt;p&gt;Thanks a lot for this explanation and sorry for late answer to closed bug...&lt;br/&gt;
Only asio and mozjs has MongoDB modifications? Or other bundles libraries have too?&lt;/p&gt;

&lt;p&gt;I really appreciate that want to push you modifications back to upstream (e.g. &lt;a href=&quot;https://github.com/chriskohlhoff/asio/issues/84#issuecomment-271927267&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/chriskohlhoff/asio/issues/84#issuecomment-271927267&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Anyway it is sometimes useful to be able to use system versions of bundled libraries - even that it could cause some loose of minor functionality.&lt;br/&gt;
For example recovering from OOM &amp;lt;- bundled mozjs has code generated only for few platform even though it is working on more ones. And someone would like to try to build MongoDB for unsupported platforms. It is harder to patch build scripts than simply use system library...&lt;br/&gt;
Another example could be icu library. Why not to enable easily switching to system library? (and support same locales as whole system do...)&lt;/p&gt;</comment>
                            <comment id="1426626" author="mark.benvenuto" created="Fri, 4 Nov 2016 19:15:33 +0000"  >&lt;p&gt;Hi &lt;a href=&quot;https://jira.mongodb.org/secure/ViewProfile.jspa?name=mskalick&quot; class=&quot;user-hover&quot; rel=&quot;mskalick&quot;&gt;mskalick&lt;/a&gt; - &lt;/p&gt;

&lt;p&gt;We want to provide some background on why we do not feel that it is advisable for you to build with the system versions of these components:&lt;/p&gt;

&lt;p&gt;&lt;ins&gt;On Mozilla JavaScript&lt;/ins&gt;:&lt;br/&gt;
MongoDB changed in the 3.2 release series to use Mozilla&apos;s SpiderMonkey JavaScript engine. We chose this engine over Google&apos;s V8 because it had greater platform portability, and had better out of memory handling.&lt;/p&gt;

&lt;p&gt;One of our goals is to be able to cap the size of the JavaScript heap of a user&apos;s request whether it is in the shell or server. This prevents users from exhausting memory in a process with JavaScript, and with proper OOM handling, we can ensure that this is handled in a non-fatal way. Here is an example of a test that will exercise the JavaScript heap in both the shell and the server:&lt;/p&gt;
&lt;p/&gt;
&lt;div id=&quot;syntaxplugin&quot; class=&quot;syntaxplugin&quot; style=&quot;border: 1px dashed #bbb; border-radius: 5px !important; overflow: auto; max-height: 30em;&quot;&gt;
&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; width=&quot;100%&quot; style=&quot;font-size: 1em; line-height: 1.4em !important; font-weight: normal; font-style: normal; color: black;&quot;&gt;
		&lt;tbody &gt;
				&lt;tr id=&quot;syntaxplugin_code_and_gutter&quot;&gt;
						&lt;td  style=&quot; line-height: 1.4em !important; padding: 0em; vertical-align: top;&quot;&gt;
					&lt;pre style=&quot;font-size: 1em; margin: 0 10px;  margin-top: 10px;   margin-bottom: 10px;  width: auto; padding: 0;&quot;&gt;&lt;span style=&quot;color: black; font-family: &apos;Consolas&apos;, &apos;Bitstream Vera Sans Mono&apos;, &apos;Courier New&apos;, Courier, monospace !important;&quot;&gt;python buildscripts/resmoke.py --executor=serial_run jstests/serial_run/memory.js&lt;/span&gt;&lt;/pre&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
			&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;p/&gt;

&lt;p&gt;Now, in order to ensure proper handling in SpiderMonkey, we install a &lt;a href=&quot;https://github.com/mongodb/mongo/blob/r3.2.10/src/mongo/scripting/mozjs/jscustomallocator.cpp&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;custom memory allocator&lt;/a&gt;. This custom memory allocator is installed via a define at build time &lt;a href=&quot;https://github.com/mongodb/mongo/blob/r3.2.10/src/third_party/mozjs-38/include/js/Utility.h#L59-L64&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;&lt;tt&gt;JS_USE_CUSTOM_ALLOCATOR&lt;/tt&gt;&lt;/a&gt;. If this define is not set at build time though, SpiderMonkey will use the standard C memory management functions (malloc, etc). In this configuration, the test case above will crash both the MongoDB shell, and server.&lt;/p&gt;

&lt;p&gt;&lt;ins&gt;On ASIO&lt;/ins&gt;:&lt;br/&gt;
MongoDB made a decision to use the latest available source code for ASIO when we started on a project to do asynchronous networking, and then have forked it to support our needs. One of important areas for this was in the &lt;a href=&quot;https://github.com/mongodb/mongo/commit/23982c4d0b11b445c54f0ec4ad58edbd837fe7e4&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;SSL integration&lt;/a&gt;.&lt;br/&gt;
This included a key change to disable ASIO&apos;s OpenSSL initialization so that it would remain MongoD&apos;s &amp;amp; MongoS&apos;s responsibility to initialize OpenSSL.&lt;/p&gt;

&lt;p&gt;I am aware that this &lt;a href=&quot;https://fedoraproject.org/wiki/Packaging:Guidelines#Bundling_and_Duplication_of_system_libraries&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;bundling and duplication of system libraries&lt;/a&gt; is against Fedora&apos;s packaging recommendations. For these two particular libraries, we need them bundled to deliver on important features.&lt;/p&gt;

&lt;p&gt;&lt;ins&gt;References&lt;/ins&gt;:&lt;br/&gt;
&lt;a href=&quot;https://fedoraproject.org/wiki/Bundled_Libraries&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://fedoraproject.org/wiki/Bundled_Libraries&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;https://fedoraproject.org/wiki/Bundled_Software_policy&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://fedoraproject.org/wiki/Bundled_Software_policy&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We appreciate that this is a source of tension for packaging, and we are open to working with you further to understand how we can continue to develop MongoDB in ways that will work well with RedHat.&lt;/p&gt;

&lt;p&gt;For now, we would like to close this ticket because we don&apos;t intend to make any local changes at this time.&lt;/p&gt;

&lt;p&gt;Please feel free to reach out with any additional concerns.&lt;/p&gt;</comment>
                            <comment id="1263520" author="mskalick" created="Fri, 13 May 2016 13:14:42 +0000"  >&lt;p&gt;Added updated version of patch for MongoDB master which allows to build agains system version of mozjs and asio.&lt;/p&gt;</comment>
                            <comment id="1097104" author="mskalick" created="Tue, 24 Nov 2015 14:55:02 +0000"  >&lt;p&gt;Hi,&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;A direct ./configure; make; make install from mozjs-38.3.0 for me provides the js/CharacterEncoding headers, which in turn provide the wide char conversion functions.&lt;/p&gt;

&lt;p&gt;    Is there a reason you&apos;re going out of your way to avoid those? If it&apos;s just my wording, I was speaking about the lack of documentation, more than my expectation that the api was subject to change.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;Currently I am using mozjs-38.2.0, however I think it is not a problem. Yes, headers are installed normally, but this symbol (&lt;tt&gt;JS::LossyUTF8CharsToNewTwoByteCharsZ&lt;/tt&gt;) is not marked as public_api ( by &lt;tt&gt;JS_PUBLIC_API(void)&lt;/tt&gt;) and by default symbols are hidden (pragma &lt;tt&gt;push(hidden)&lt;/tt&gt; - in config/gcc_hidden.h). This is why I would be happy if MongoDB uses more standard API &lt;img class=&quot;emoticon&quot; src=&quot;https://jira.mongodb.org/images/icons/emoticons/smile.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The random Chinese you&apos;re seeing is a result of not doing exactly the utf8 -&amp;gt; ? encoding that spidermonkey wants. Which, as you&apos;ve noticed, isn&apos;t utf8 -&amp;gt; utf16, at least as C++11 understands it.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Do you know the difference? What should be changed?&lt;/p&gt;</comment>
                            <comment id="1090921" author="jason.carey" created="Tue, 17 Nov 2015 19:58:46 +0000"  >&lt;p&gt;Marek,&lt;/p&gt;

&lt;p&gt;Thanks for the patch, I&apos;d been meaning to evaluate a system version of spidermonkey, but hadn&apos;t had time the time to take more than a cursory look.&lt;/p&gt;

&lt;p&gt;First, some big caveats:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;We haven&apos;t been testing with a system version of mozjs.&lt;/li&gt;
	&lt;li&gt;We do a bit of dance to avoid pulling in an nspr dependency that involves providing our own PosixNSPR.cpp. This doesn&apos;t work with a system NSPR
	&lt;ul&gt;
		&lt;li&gt;src/mongo/scripting/SConscript probably needs to avoid including PosixNSPR.cpp, otherwise you&apos;ll have duplicate symbols kicking around.&lt;/li&gt;
		&lt;li&gt;We use PR_CreateThread assuming it&apos;s our copy.  A quick glance shows that we probably call it with the wrong arguments for scope PR_LOCAL_THREAD should be PR_GLOBAL_THREAD.&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
	&lt;li&gt;We rely on providing a jscustomallocator to handle out of memory errors.  There are some use cases (stopping runaway js before it OOM&apos;s the whole server) that you won&apos;t be able to handle out of the box.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;And a question:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;What version of MozJS are you using?
	&lt;ul&gt;
		&lt;li&gt;A direct ./configure; make; make install from mozjs-38.3.0 for me provides the js/CharacterEncoding headers, which in turn provide the wide char conversion functions.
		&lt;ul&gt;
			&lt;li&gt;Is there a reason you&apos;re going out of your way to avoid those?  If it&apos;s just my wording, I was speaking about the lack of documentation, more than my expectation that the api was subject to change.&lt;/li&gt;
		&lt;/ul&gt;
		&lt;/li&gt;
		&lt;li&gt;The random Chinese you&apos;re seeing is a result of not doing exactly the utf8 -&amp;gt; ? encoding that spidermonkey wants.  Which, as you&apos;ve noticed, isn&apos;t utf8 -&amp;gt; utf16, at least as C++11 understands it.&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;In either case, it&apos;s a little too late in our release cycle to get this in for 3.2.0.  I&apos;ll aim to get this in for 3.3 (the 3.4 dev branch) and look into a backport for 3.2.1 or 3.2.2.&lt;/p&gt;

&lt;p&gt;-Jason&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                            <attachment id="97588" name="devel.patch" size="6012" author="mskalick" created="Mon, 9 Nov 2015 12:20:54 +0000"/>
                            <attachment id="121713" name="system-libs.patch" size="3812" author="mskalick" created="Fri, 13 May 2016 13:14:42 +0000"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>6.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18555" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname># of Sprints</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9.0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10011" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Backwards Compatibility</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10038"><![CDATA[Fully Compatible]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Mon, 9 Nov 2015 12:47:08 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        7 years, 3 weeks, 6 days ago
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18254" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Dependencies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[]]></customfieldvalue>


                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_15850" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10057" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comment by Customer</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>true</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10056" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last commenter</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>ramon.fernandez@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            7 years, 3 weeks, 6 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                    <customfield id="customfield_10032" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Operating System</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10026"><![CDATA[ALL]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>mskalick</customfieldvalue>
            <customfieldvalue>mark.benvenuto@mongodb.com</customfieldvalue>
            <customfieldvalue>mira.carey@mongodb.com</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrkpfj:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|hsa2hz:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_23361" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Requested By</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_10557" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="1063">Platforms 15 (06/03/16)</customfieldvalue>
    <customfieldvalue id="1064">Platforms 16 (06/24/16)</customfieldvalue>
    <customfieldvalue id="1065">Platforms 17 (07/15/16)</customfieldvalue>
    <customfieldvalue id="1066">Platforms 18 (08/05/16)</customfieldvalue>
    <customfieldvalue id="1227">Platforms 2016-08-26</customfieldvalue>
    <customfieldvalue id="1244">Platforms 2016-09-19</customfieldvalue>
    <customfieldvalue id="1309">Platforms 2016-10-10</customfieldvalue>
    <customfieldvalue id="1347">Platforms 2016-10-31</customfieldvalue>
    <customfieldvalue id="1370">Platforms 2016-11-21</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10750" key="com.atlassian.jira.plugin.system.customfieldtypes:textarea">
                        <customfieldname>Steps To Reproduce</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>&lt;p&gt;scons all \&lt;br/&gt;
        -j8 \&lt;br/&gt;
        --use-system-tcmalloc \&lt;br/&gt;
        --use-system-pcre \&lt;br/&gt;
        --use-system-boost \&lt;br/&gt;
        --use-system-snappy \&lt;br/&gt;
        --use-system-zlib \&lt;br/&gt;
        --use-system-stemmer \&lt;br/&gt;
        --use-system-yaml \&lt;br/&gt;
        --use-system-mozjs \&lt;br/&gt;
        --nostrip \&lt;br/&gt;
        --ssl \&lt;br/&gt;
        --disable-warnings-as-errors \&lt;br/&gt;
%ifarch x86_64&lt;br/&gt;
        --wiredtiger=on \&lt;br/&gt;
%else&lt;br/&gt;
        --wiredtiger=off \&lt;br/&gt;
%endif&lt;br/&gt;
        --experimental-decimal-support=off \&lt;br/&gt;
        CCFLAGS=&quot;%{?optflags}&quot; LINKFLAGS=&quot;%{?__global_ldflags}&quot;&lt;/p&gt;

&lt;p&gt;(tried in Fedora Rawhide)&lt;/p&gt;</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    <customfield id="customfield_10053" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>Time In Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_22870" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Triagers</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11861" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>User Summary</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="11856"><![CDATA[Not Needed]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_14350" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>serverRank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrkztb:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                    </customfields>
    </item>
</channel>
</rss>