<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent posts to Discussion</title><link>https://sourceforge.net/p/fastformat/discussion/</link><description>Recent posts to Discussion</description><atom:link href="https://sourceforge.net/p/fastformat/discussion/feed.rss" rel="self"/><language>en</language><lastBuildDate>Fri, 22 Apr 2016 17:44:57 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/fastformat/discussion/feed.rss" rel="self" type="application/rss+xml"/><item><title>Is FastFormat dead?</title><link>https://sourceforge.net/p/fastformat/discussion/612781/thread/2cc4ed1a/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The FastFormat and Pantheios repositories are available in Github.&lt;br/&gt;
&lt;a href="https://github.com/synesissoftware/FastFormat" rel="nofollow"&gt;https://github.com/synesissoftware/FastFormat&lt;/a&gt; and&lt;br/&gt;
&lt;a href="https://github.com/synesissoftware/Pantheios" rel="nofollow"&gt;https://github.com/synesissoftware/Pantheios&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If you use CMake as build tool, I have converted FastFormat to a CMake project for (CMake style) importing. Newest version of FastFormat is 0.7.1 from  26th September 2015.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mikko Koivunalho</dc:creator><pubDate>Fri, 22 Apr 2016 17:44:57 -0000</pubDate><guid>https://sourceforge.neta1ced979ef91912a0e45d40cba16c38bc1ce5cf1</guid></item><item><title>Is FastFormat dead?</title><link>https://sourceforge.net/p/fastformat/discussion/612781/thread/2cc4ed1a/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Are you still working active on Fastformat (Still alive?) or should i you Pantheios ?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Markus Weinert</dc:creator><pubDate>Tue, 08 Mar 2016 16:03:58 -0000</pubDate><guid>https://sourceforge.net2af5c8f474c587bb0c259b168569c207933ac0e4</guid></item><item><title>What i am doing wrong (fastformat 0.7.1)</title><link>https://sourceforge.net/p/fastformat/discussion/612782/thread/70104d70/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;i currently got the same problelm like this one:&lt;br/&gt;
&lt;a href="https://sourceforge.net/p/fastformat/discussion/612782/thread/73c4033d/"&gt;https://sourceforge.net/p/fastformat/discussion/612782/thread/73c4033d/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;On my Win7 64bit System the variables look like:&lt;/p&gt;
&lt;p&gt;FASTFORMAT_ROOT=C:\Fastformat\fastformat-0.7.1&lt;br/&gt;
STLSOFT=C:\Fastformat\stlsoft-1.9.124&lt;/p&gt;
&lt;p&gt;the INCLUDE Path of the project logger is extended with "C:\Fastformat\fastformat-0.7.1\include;C:\Fastformat\stlsoft-1.9.124\include;"&lt;br/&gt;
the Lib Path ist extended with "C:\Fastformat\fastformat-0.7.1\bin;"&lt;/p&gt;
&lt;p&gt;My sample code looks like and should be compiled with Unicode:&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="cp"&gt;#include &amp;lt;fastformat/fastformat.hpp&amp;gt;&lt;/span&gt;
&lt;span class="cp"&gt;#include &amp;lt;fastformat/sinks/ostream.hpp&amp;gt;&lt;/span&gt;
&lt;span class="cp"&gt;#include &amp;lt;iostream&amp;gt;&lt;/span&gt;
&lt;span class="cp"&gt;#include &amp;lt;string&amp;gt;&lt;/span&gt;

&lt;span class="kt"&gt;int&lt;/span&gt; &lt;span class="nf"&gt;main&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="kt"&gt;char&lt;/span&gt;         &lt;span class="n"&gt;arg0&lt;/span&gt;&lt;span class="p"&gt;[]&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"abc"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="n"&gt;std&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;string&lt;/span&gt;  &lt;span class="n"&gt;arg1&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"def"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="kt"&gt;int&lt;/span&gt;          &lt;span class="n"&gt;arg2&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="mi"&gt;101&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

    &lt;span class="n"&gt;std&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;string&lt;/span&gt;  &lt;span class="n"&gt;result&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

    &lt;span class="c1"&gt;// format to a string&lt;/span&gt;
    &lt;span class="n"&gt;fastformat&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;fmt&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;result&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s"&gt;"Arguments in arbitrary order, such as {2}, {0} and {1}"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;arg0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;arg1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;arg2&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

    &lt;span class="c1"&gt;// format to cout, with a newline&lt;/span&gt;
    &lt;span class="n"&gt;fastformat&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;fmtln&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;std&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;cout&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s"&gt;"Arguments in arbitrary order, such as {2}, {0} and {1}"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;arg0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;arg1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;arg2&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;p&gt;If i compile it with Visual Studio 2013 i receive a couple errors like:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;api_functions.hpp(294): error C2665: 'fastformat::c_str_len_w' : none of the 4 overloads could convert all the argument types&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;How can i resolve this issue and compile correctly ?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Markus Weinert</dc:creator><pubDate>Tue, 08 Mar 2016 15:20:14 -0000</pubDate><guid>https://sourceforge.netbed8f6b0b7d8e9c042bf2ed02d62a2be4d3b4c9f</guid></item><item><title>Unable to use floats on gcc 4.9.3, Kubuntu 14.04 (jessie/sid)</title><link>https://sourceforge.net/p/fastformat/discussion/612782/thread/29c43fb3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Did the steps given in the following url&lt;/p&gt;
&lt;p&gt;&lt;a class="" href="https://sourceforge.net/p/fastformat/discussion/612782/thread/6f3600ee/#5830"&gt;Building on gcc 4.8.1, Debina GNU/Linux wheezy/sid&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;to get fastformat to compile. Compiled fine and all tests were successful.&lt;/p&gt;
&lt;p&gt;The following code&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="cp"&gt;#include &amp;lt;fastformat/fastformat.hpp&amp;gt;&lt;/span&gt;
&lt;span class="cp"&gt;#include &amp;lt;fastformat/sinks/ostream.hpp&amp;gt;&lt;/span&gt;
&lt;span class="cp"&gt;#include &amp;lt;fastformat/inserters/to_f.hpp&amp;gt;&lt;/span&gt;

&lt;span class="cp"&gt;#include &amp;lt;string&amp;gt;&lt;/span&gt;
&lt;span class="cp"&gt;#include &amp;lt;iostream&amp;gt;&lt;/span&gt;

&lt;span class="kt"&gt;int&lt;/span&gt; &lt;span class="nf"&gt;main&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;

    &lt;span class="kt"&gt;float&lt;/span&gt;       &lt;span class="n"&gt;flot&lt;/span&gt;    &lt;span class="o"&gt;=&lt;/span&gt;       &lt;span class="mf"&gt;25.5&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="n"&gt;std&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;string&lt;/span&gt; &lt;span class="n"&gt;sink&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

    &lt;span class="n"&gt;fastformat&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;write&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;sink&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;fastformat&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;to_f&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;flot&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;);&lt;/span&gt;

    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;p&gt;was compiled the following way&lt;/p&gt;
&lt;p&gt;&lt;code&gt;g++  -g fastformatfloattest.cpp -o fastformatfloattest -lfastformat.0.core.gcc47&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;and terminated with SIGABRT (06) signal on line&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="nt"&gt;fastformat&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="nd"&gt;:write&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nt"&gt;sink&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="nt"&gt;fastformat&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="nd"&gt;:to_f&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nt"&gt;flot&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt; &lt;span class="o"&gt;);&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;p&gt;upon execution with the following output&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;fastformatfloattest: /usr/include/fastformat/inserters/real.hpp:421: stlsoft::basic_shim_string&amp;lt;char, 64ul&amp;gt; fastformat::inserters::real(const double&amp;amp;, int, int, fastformat::ff_char_t): Assertion `(FASTFORMAT_TYPECHECK_MSG_("maximum value for width exceeded") &amp;amp;&amp;amp; (abs(minimumWidth) &amp;lt; 512))' failed.
Aborted (core dumped)
&lt;/pre&gt;&lt;/div&gt;


&lt;p&gt;fastformat::to_f calls fastformat::inserters::real with the following arguments&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;value
real_impl::default_width_sentinel_(),
real_impl::default_precision_sentinel_(),
'f'
&lt;/pre&gt;&lt;/div&gt;


&lt;p&gt;where real_impl::default_width_sentinel (minimumWidth in  fastformat::inserters::real) returns stlsoft::limit_traits&amp;lt;int&amp;gt;::minimum(), which outputs -2147483648 on my system.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mark Tomm</dc:creator><pubDate>Wed, 10 Feb 2016 11:11:16 -0000</pubDate><guid>https://sourceforge.net914f7fcc5ca05648ddf390c37e32943f1279fd03</guid></item><item><title>Unable to use floats Building on gcc 4.8.1, Debina GNU/Linux wheezy/sid</title><link>https://sourceforge.net/p/fastformat/discussion/612782/thread/96f10c7b/</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mark Tomm</dc:creator><pubDate>Wed, 10 Feb 2016 10:49:30 -0000</pubDate><guid>https://sourceforge.net6b93ee55bdec21a30346ab9fcb370c4c72afa975</guid></item><item><title>error LNK2019: unresolved external symbol</title><link>https://sourceforge.net/p/fastformat/discussion/612782/thread/93db0bb5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I am facing the same issue. Did you find a solution?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Srinivas Prabhu</dc:creator><pubDate>Mon, 25 Jan 2016 04:47:03 -0000</pubDate><guid>https://sourceforge.net07673199644841b3d620f9c540f4da78189d1c3c</guid></item><item><title>error LNK2019: unresolved external symbol</title><link>https://sourceforge.net/p/fastformat/discussion/612782/thread/93db0bb5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;just one more comment:&lt;/p&gt;
&lt;p&gt;when building using command: nmake build&lt;br/&gt;
I receive error:&lt;br/&gt;
D:\3pty\cpp_fast_format\fastformat-0.7.1\include\fastformat/sinks/CComBSTR.hpp(79) : fatal error C1083: Cannot open include file: 'atlbase.h': No such file or directory&lt;br/&gt;
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\BIN\cl.EXE"' : return code '0x2'&lt;/p&gt;
&lt;p&gt;The problem is with atlbase.h which (as far as I found) does not come with vs c++ Express edition.&lt;/p&gt;
&lt;p&gt;Not sure if this is also a reason for the error I receive when trying to build my code.&lt;/p&gt;
&lt;p&gt;/dariusz&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dariusz Pietrzak</dc:creator><pubDate>Tue, 01 Dec 2015 17:01:17 -0000</pubDate><guid>https://sourceforge.net414eaa7d29dec2700231da0eb7a859d1e045a183</guid></item><item><title>error LNK2019: unresolved external symbol</title><link>https://sourceforge.net/p/fastformat/discussion/612782/thread/93db0bb5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;br/&gt;
I am quite new to C++ (coming from .NET environment) and I am trying to use FastFormat in VS C++ (Express 2012 for Windows Desktop). &lt;br/&gt;
I did the following steps following what I have found in the FAQ:&lt;br/&gt;
1.&lt;br/&gt;
download and unzip FastFormat and STLSoft to:&lt;br/&gt;
D:\3pty\cpp_fast_format\fastformat-0.7.1&lt;br/&gt;
D:\3pty\stlsoft-1.9.124&lt;br/&gt;
2.&lt;br/&gt;
open VS2012 x64 Cross Tools Command Prompt&lt;br/&gt;
change directory to D:\3pty\cpp_fast_format\fastformat-0.7.1\build\vc12&lt;br/&gt;
3.&lt;br/&gt;
define environment variables:&lt;br/&gt;
SET STLSOFT=D:\3pty\stlsoft-1.9.124&lt;br/&gt;
SET FASTFORMAT_ROOT=D:\3pty\cpp_fast_format\fastformat-0.7.1&lt;br/&gt;
4.&lt;br/&gt;
run the following command:&lt;br/&gt;
nmake build.libs.core&lt;br/&gt;
5.&lt;br/&gt;
in Configuration Properties --&amp;gt; C/C++ --&amp;gt; General &lt;br/&gt;
define Additional Include Directories: D:\3pty\cpp_fast_format\fastformat-0.7.1\include; D:\3pty\stlsoft-1.9.124\include&lt;br/&gt;
6.&lt;br/&gt;
in Configuration Properties --&amp;gt; Linker --&amp;gt; General&lt;br/&gt;
define Additional Include Directories: D:\3pty\cpp_fast_format\fastformat-0.7.1\lib&lt;br/&gt;
7.&lt;br/&gt;
in Configuration Properties --&amp;gt; General&lt;br/&gt;
change Character Set from Use Unicode Character Set to Use Multi-Byte Character Set&lt;/p&gt;
&lt;p&gt;Now here is my "program":&lt;/p&gt;
&lt;p&gt;#include&amp;lt;iostream&amp;gt;&lt;br/&gt;
   #include &amp;lt;string&amp;gt;&lt;br/&gt;
   #include &amp;lt;fastformat fastformat.hpp=""&amp;gt;&lt;/p&gt;
&lt;p&gt;#define FASTFORMAT_NO_VERSION_NAG&lt;/p&gt;
&lt;p&gt;using namespace std;&lt;/p&gt;
&lt;p&gt;int main()&lt;br/&gt;
   {&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;   &lt;span class="nt"&gt;std&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="nd"&gt;:string&lt;/span&gt;             &lt;span class="nt"&gt;sink&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
   &lt;span class="nt"&gt;char&lt;/span&gt; &lt;span class="nt"&gt;const&lt;/span&gt;&lt;span class="o"&gt;*&lt;/span&gt;             &lt;span class="nt"&gt;arg0&lt;/span&gt;    &lt;span class="o"&gt;=&lt;/span&gt;   &lt;span class="s2"&gt;"arg0"&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;

   &lt;span class="nt"&gt;sink&lt;/span&gt;&lt;span class="nc"&gt;.erase&lt;/span&gt;&lt;span class="o"&gt;();&lt;/span&gt;
   &lt;span class="nt"&gt;fastformat&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt;&lt;span class="nd"&gt;:fmt&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nt"&gt;sink&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="s2"&gt;"A c-style string: {0}"&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="nt"&gt;arg0&lt;/span&gt;&lt;span class="o"&gt;);&lt;/span&gt;

   &lt;span class="nt"&gt;cout&lt;/span&gt;&lt;span class="o"&gt;&amp;lt;&amp;lt;&lt;/span&gt;&lt;span class="s2"&gt;"\npress ENTER..."&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;&lt;span class="nt"&gt;cin&lt;/span&gt;&lt;span class="nc"&gt;.get&lt;/span&gt;&lt;span class="o"&gt;();&lt;/span&gt;
   &lt;span class="nt"&gt;return&lt;/span&gt; &lt;span class="nt"&gt;0&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;now, when trying to build it I get the following error messages:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;main.obj : error LNK2019: unresolved external symbol _fastformat_init referenced in function "public: &lt;strong&gt;thiscall fastformat::fastformat_initialiser::fastformat_initialiser(void)" (??0fastformat_initialiser@fastformat@@QAE@XZ)&lt;br/&gt;
1&amp;gt;main.obj : error LNK2019: unresolved external symbol _fastformat_uninit referenced in function "public: &lt;/strong&gt;thiscall fastformat::fastformat_initialiser::~fastformat_initialiser(void)" (??1fastformat_initialiser@fastformat@@QAE@XZ)&lt;br/&gt;
etc etc...&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Could not find any more suggestion in FAQ. I would appreciate any suggestions! Thanks!&lt;/p&gt;
&lt;p&gt;Dariusz&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dariusz Pietrzak</dc:creator><pubDate>Tue, 01 Dec 2015 13:18:56 -0000</pubDate><guid>https://sourceforge.netce2762bd7b3f6677bfdaf8501cc56d177acfc629</guid></item><item><title>Windows 7 vc8 32-bit build fail</title><link>https://sourceforge.net/p/fastformat/discussion/612782/thread/f141831f/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Sorry that I posted the wrong build log. I fixed it, now it is the correct log.&lt;br/&gt;
The following is the content of the file we specified for our CL&lt;br/&gt;
    #ifndef TARGETSXS_H_&lt;br/&gt;
        #define TARGETSXS_H_&lt;br/&gt;
        #ifndef &lt;strong&gt;midl&lt;br/&gt;
            #define _SXS_ASSEMBLY_VERSION "8.0.50727.4053"&lt;br/&gt;
            #define _CRT_ASSEMBLY_VERSION _SXS_ASSEMBLY_VERSION&lt;br/&gt;
            #define _MFC_ASSEMBLY_VERSION _SXS_ASSEMBLY_VERSION&lt;br/&gt;
            #define _ATL_ASSEMBLY_VERSION _SXS_ASSEMBLY_VERSION&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;
            #ifdef &lt;/strong&gt;cplusplus&lt;br/&gt;
                extern "C" {&lt;br/&gt;
            #endif&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt;declspec(selectany) int _forceCRTManifest;&lt;br/&gt;
&lt;br/&gt;
&lt;/strong&gt;declspec(selectany) int _forceMFCManifest;&lt;br/&gt;
&lt;strong&gt;declspec(selectany) int _forceAtlDllManifest;&lt;br/&gt;
&lt;br/&gt;
&lt;/strong&gt;declspec(selectany) int _forceCRTManifestRTM;&lt;br/&gt;
&lt;strong&gt;declspec(selectany) int _forceMFCManifestRTM;&lt;br/&gt;
&lt;br/&gt;
&lt;/strong&gt;declspec(selectany) int _forceAtlDllManifestRTM;&lt;br/&gt;
&lt;br/&gt;
            #ifdef __cplusplus&lt;br/&gt;
                }&lt;br/&gt;
            #endif&lt;br/&gt;
        #endif&lt;br/&gt;
    #endif&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Swave Shih</dc:creator><pubDate>Sun, 22 Nov 2015 09:15:56 -0000</pubDate><guid>https://sourceforge.net6aea41f5a00dd83a03638062075cef68978a87b2</guid></item><item><title>Windows 7 vc8 32-bit build fail</title><link>https://sourceforge.net/p/fastformat/discussion/612782/thread/f141831f/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi there, We are using jenkins for CI and want to buil vc8 32 / 64 bit &amp;amp; vc11 32 / 64 bit libraries.&lt;br/&gt;
The same script can build vc11 64-bit but vc8 32-bit exist an error.&lt;br/&gt;
Please help me, thx.&lt;br/&gt;
I converted .zip to .tar.gz, I believe it do no harm to the procedure.&lt;br/&gt;
Here's the output from our build machine :&lt;/p&gt;
&lt;hr/&gt;
&lt;p&gt;c:\jenkins\workspace\3rdparty_2.82_fastformat_Windows&amp;gt;python 3rd_party\fastformat\build_fastformat.py fastformat-0.7.1.tar.gz &lt;br/&gt;
Command : &lt;span&gt;['3rd_party\fastformat\build_fastformat.py', 'fastformat-0.7.1.tar.gz']&lt;/span&gt;&lt;br/&gt;
Extracting fastformat-0.7.1.tar.gz to "c:\jenkins\workspace\3rdparty_2.82_fastformat_Windows\3rd_party\fastformat\working_dir"&lt;br/&gt;
Command : &lt;span&gt;['c:\jenkins\workspace\3rdparty_2.82_fastformat_Windows\3rd_party\fastformat\build_fastformat_windows.bat', 'fastformat-0.7.1', '32-bit', 'vc8']&lt;/span&gt;&lt;br/&gt;
2015-11-20 17:46:32.967000 CURRENT_DIRECTORY="c:\jenkins\workspace\3rdparty_2.82_fastformat_Windows\3rd_party\fastformat"&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:32.967000 FASTFORMAT_FOLDER="c:\jenkins\workspace\3rdparty_2.82_fastformat_Windows\3rd_party\fastformat\working_dir\fastformat-0.7.1"&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:32.967000 BIT_VERSION=32-bit&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:32.967000 COMPILER_VERSION=vc8&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:32.967000 OUTPUT_FOLDER=c:\jenkins\workspace\3rdparty_2.82_fastformat_Windows\3rd_party\fastformat\output\32-bit_vc8&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:32.967000 STLSOFT="c:\jenkins\workspace\3rdparty_2.82_fastformat_Windows\3rd_party\fastformat..\stlsoft-1.9.124"&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:32.982000 Command = CALL "C:\Program Files (x86)\Microsoft Visual Studio 8\VC\vcvarsall.bat" x86&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:32.998000 Setting environment for using Microsoft Visual Studio 2005 x86 tools.&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:33.013000 Command = MKDIR c:\jenkins\workspace\3rdparty_2.82_fastformat_Windows\3rd_party\fastformat\output&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:33.029000 Command = MKDIR c:\jenkins\workspace\3rdparty_2.82_fastformat_Windows\3rd_party\fastformat\output\32-bit_vc8&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:33.029000 Command = MKDIR c:\jenkins\workspace\3rdparty_2.82_fastformat_Windows\3rd_party\fastformat\output\32-bit_vc8\headers&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:33.029000 Command = MKDIR c:\jenkins\workspace\3rdparty_2.82_fastformat_Windows\3rd_party\fastformat\output\32-bit_vc8\headers\fastformat&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:33.029000 Command = MKDIR c:\jenkins\workspace\3rdparty_2.82_fastformat_Windows\3rd_party\fastformat\output\32-bit_vc8\libraries&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:33.029000 Command = PUSHD c:\jenkins\workspace\3rdparty_2.82_fastformat_Windows\3rd_party\fastformat\working_dir\fastformat-0.7.1\build\vc8&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:33.045000 Command = nmake -f makefile clean&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:33.060000 &lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:33.060000 Microsoft (R) Program Maintenance Utility Version 8.00.50727.762&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:33.060000 Copyright (C) Microsoft Corporation.  All rights reserved.&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:33.060000 &lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:33.403000 cleaning Core libraries ...&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:33.840000 cleaning Loki.SafeFormat libraries ...&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:34.308000 cleaning shwild libraries ...&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:34.745000 cleaning xTests libraries ...&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:35.182000 cleaning Bitbucket programs ...&lt;/p&gt;
&lt;p&gt;2015-11-20 17:46:38.161000 cleaning Example programs ...&lt;/p&gt;
&lt;p&gt;2015-11-20 17:47:11.873000 cleaning Sample programs ...&lt;/p&gt;
&lt;p&gt;2015-11-20 17:47:11.967000 cleaning Test::Unit files ...&lt;/p&gt;
&lt;p&gt;2015-11-20 17:47:44.087000 cleaning Test::Component files ...&lt;/p&gt;
&lt;p&gt;2015-11-20 17:48:01.450000 cleaning Test::Scratch files ...&lt;/p&gt;
&lt;p&gt;2015-11-20 17:48:05.225000 cleaning Test::Performance files ...&lt;/p&gt;
&lt;p&gt;2015-11-20 17:48:17.268000 Command = nmake -f makefile build.libs.core&lt;/p&gt;
&lt;p&gt;2015-11-20 17:48:17.284000 &lt;/p&gt;
&lt;p&gt;2015-11-20 17:48:17.284000 Microsoft (R) Program Maintenance Utility Version 8.00.50727.762&lt;/p&gt;
&lt;p&gt;2015-11-20 17:48:17.284000 Copyright (C) Microsoft Corporation.  All rights reserved.&lt;/p&gt;
&lt;p&gt;2015-11-20 17:48:17.284000 &lt;/p&gt;
&lt;p&gt;2015-11-20 17:48:17.705000  cl    -nologo -c -W4 -wd4800 -WX -EHsc -GR -EHsc -GR -MTd -D_DEBUG -Zi -Fd.\core.api.mt.debug.pdb   -DWIN32    -DSHWILD_QUALITY_NO_USE_XCOVER   -DFASTFORMAT_NO_IMPLICIT_LINK  -I....\src   -I....\include      -I"c:\jenkins\workspace\3rdparty_2.82_fastformat_Windows\3rd_party\fastformat..\stlsoft-1.9.124"\include  -Fo.\core.api.mt.debug.obj ....\src\api.cpp&lt;/p&gt;
&lt;p&gt;2015-11-20 17:48:17.783000 api.cpp&lt;/p&gt;
&lt;p&gt;2015-11-20 17:48:18.158000 ....\src\api.cpp : fatal error C1083: Cannot open include file: 'c:\jenkins\workspace\3rdparty_2.82_fastformat_Windows\3rd_party\fastformat....\include\targetsxs.h': No such file or directory&lt;/p&gt;
&lt;p&gt;2015-11-20 17:48:18.251000 NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 8\VC\BIN\cl.EXE"' : return code '0x2'&lt;/p&gt;
&lt;p&gt;2015-11-20 17:48:18.251000 Stop.&lt;/p&gt;
&lt;p&gt;Windows 32-bit vs2005 build failed!!&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Swave Shih</dc:creator><pubDate>Fri, 20 Nov 2015 10:05:27 -0000</pubDate><guid>https://sourceforge.netb4134eaabf408708fefc6cf6a143e93da4065f91</guid></item></channel></rss>