Boost C++ Libraries: Ticket #8221: libs/context/src/asm/make_i386_sysv_macho_gas.S fails to compile under OSX https://svn.boost.org/trac10/ticket/8221 <p> This issue was originally reported against 1.51.0 at <a class="ext-link" href="http://boost.2283326.n4.nabble.com/Context-Building-32-bit-Context-td4636075.html"><span class="icon">​</span>http://boost.2283326.n4.nabble.com/Context-Building-32-bit-Context-td4636075.html</a> by someone else but it doesn't look like it was ever fixed. I can reproduce it under 1.53.0. </p> <p> When compiling the "context" module under OSX, I get the following compiler error: </p> <p> darwin.compile.asm bin.v2/libs/context/build/5c5d610e2c3c5c3698138625c22860e2/asm/make_i386_sysv_macho_gas.o libs/context/src/asm/make_i386_sysv_macho_gas.S:59:suffix or operands invalid for `pop' </p> <blockquote> <p> "g++" -x assembler-with-cpp -O0 -fno-inline -Wall -g -dynamic -gdwarf-2 -fexceptions -fPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_CONTEXT_DYN_LINK=1 -I"." -c -o "bin.v2/libs/context/build/5c5d610e2c3c5c3698138625c22860e2/asm/make_i386_sysv_macho_gas.o" "libs/context/src/asm/make_i386_sysv_macho_gas.S" </p> </blockquote> <p> ...failed darwin.compile.asm bin.v2/libs/context/build/5c5d610e2c3c5c3698138625c22860e2/asm/make_i386_sysv_macho_gas.o... darwin.compile.asm bin.v2/libs/context/build/5c5d610e2c3c5c3698138625c22860e2/asm/jump_i386_sysv_macho_gas.o libs/context/src/asm/jump_i386_sysv_macho_gas.S:70:suffix or operands invalid for `jmp' </p> <blockquote> <p> "g++" -x assembler-with-cpp -O0 -fno-inline -Wall -g -dynamic -gdwarf-2 -fexceptions -fPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_CONTEXT_DYN_LINK=1 -I"." -c -o "bin.v2/libs/context/build/5c5d610e2c3c5c3698138625c22860e2/asm/jump_i386_sysv_macho_gas.o" "libs/context/src/asm/jump_i386_sysv_macho_gas.S" </p> </blockquote> <p> ...failed darwin.compile.asm bin.v2/libs/context/build/5c5d610e2c3c5c3698138625c22860e2/asm/jump_i386_sysv_macho_gas.o... </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/8221 Trac 1.4.3 olli Sun, 03 Mar 2013 09:33:58 GMT <link>https://svn.boost.org/trac10/ticket/8221#comment:1 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/8221#comment:1</guid> <description> <p> Are you shure your env is correct? I got the info from other develoeprs that the code is working on 32bit Mac OS X. </p> <p> 'jmp *%edx' and 'popl %ecx' is legal assembler on 32bit i386 Mac OS X. </p> <p> For me it seams that something is wired with your build. </p> <p> BTW: If 32bit Mac OS X is so important than contribute regression tests for boost-trunk. This would help to prevent releasing bugs in boost. Till today 32bit Mac OS X has no regression tests - mabye 32 bit Mac OS X will be marked as not supported in the future. </p> </description> <category>Ticket</category> </item> <item> <dc:creator>olli</dc:creator> <pubDate>Thu, 07 Mar 2013 07:33:53 GMT</pubDate> <title>status changed; resolution set https://svn.boost.org/trac10/ticket/8221#comment:2 https://svn.boost.org/trac10/ticket/8221#comment:2 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">worksforme</span> </li> </ul> <p> Today, I got the info from other developers that boost.context (1.53) works on 32bit Mac OS X, so I'll close this bug report as 'works for me'. </p> Ticket Gili <cowwoc@…> Thu, 07 Mar 2013 15:53:25 GMT <link>https://svn.boost.org/trac10/ticket/8221#comment:3 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/8221#comment:3</guid> <description> <p> Sorry for not replying earlier but I believe you need to reopen this issue. I am invoking: </p> <p> bjam address-model=32 --stagedir=. --without-python --without-mpi --layout=system variant=debug link=shared threading=multi runtime-link=shared stage -j 2 --hash </p> <p> on Mountain Lion. So, I'm building Boost 32-bit under a 64-bit OS. </p> </description> <category>Ticket</category> </item> <item> <author>Serguei E. Leontiev <leo@…></author> <pubDate>Sat, 09 Mar 2013 13:34:46 GMT</pubDate> <title/> <link>https://svn.boost.org/trac10/ticket/8221#comment:4 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/8221#comment:4</guid> <description> <p> Replying to <a class="ticket" href="https://svn.boost.org/trac10/ticket/8221#comment:1" title="Comment 1">olli</a>: </p> <blockquote class="citation"> <p> Are you shure your env is correct? I got the info from other develoeprs that the code is working on 32bit Mac OS X. </p> <p> 'jmp *%edx' and 'popl %ecx' is legal assembler on 32bit i386 Mac OS X. </p> </blockquote> <p> Yes, but command line `"g++" -x assembler-with-cpp -O0 -fno-inline -Wall -g -dynamic -gdwarf-2 -fexceptions -fPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_CONTEXT_DYN_LINK=1 -I"." -c -o...' compile for default architecture, i.e. x86_64 architecture on modern 64bit Mac. </p> <p> Replying to <a class="ticket" href="https://svn.boost.org/trac10/ticket/8221#comment:3" title="Comment 3">Gili &lt;cowwoc@…&gt;</a>: </p> <blockquote class="citation"> <p> bjam address-model=32 --stagedir=. --without-python --without-mpi --layout=system variant=debug link=shared threading=multi runtime-link=shared stage -j 2 --hash on Mountain Lion. So, I'm building Boost 32-bit under a 64-bit OS. </p> </blockquote> <p> Probably, that not right, for example: </p> <pre class="wiki">leom-3:boost-trunk leo$ uname -a Darwin leom-3.local 12.2.0 Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64 x86_64 leom-3:boost-trunk leo$ ./bjam address-model=32 --stagedir=xyz --without-python --without-mpi --layout=system variant=debug link=shared threading=multi runtime-link=shared stage -j 2 --hash ... leom-3:boost-trunk leo$ file xyz/lib/* xyz/lib/libboost_atomic.dylib: Mach-O 64-bit x86_64 dynamically linked shared library xyz/lib/libboost_chrono.dylib: Mach-O 64-bit x86_64 dynamically linked shared library ... </pre><p> IMHO, this bug - bug in "tools/build/v2/tools/darwin.jam" </p> <p> Sorry for my best English </p> </description> <category>Ticket</category> </item> <item> <author>Serguei E. Leontiev <leo@…></author> <pubDate>Sat, 09 Mar 2013 13:37:21 GMT</pubDate> <title>cc set https://svn.boost.org/trac10/ticket/8221#comment:5 https://svn.boost.org/trac10/ticket/8221#comment:5 <ul> <li><strong>cc</strong> <span class="trac-author">leo@…</span> added </li> </ul> Ticket Serguei E. Leontiev <leo@…> Sat, 09 Mar 2013 14:52:08 GMT <link>https://svn.boost.org/trac10/ticket/8221#comment:6 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/8221#comment:6</guid> <description> <p> P.S. </p> <p> Workaround - add to end file "tools/build/v2/user-config.jam" next string: </p> <pre class="wiki">using darwin : : c++ -arch i386 : : ; </pre> </description> <category>Ticket</category> </item> <item> <author>cowwoc@…</author> <pubDate>Sat, 09 Mar 2013 19:13:22 GMT</pubDate> <title/> <link>https://svn.boost.org/trac10/ticket/8221#comment:7 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/8221#comment:7</guid> <description> <p> Okay, so why is this ticket still closed? Shouldn't you reopen it? </p> </description> <category>Ticket</category> </item> <item> <dc:creator>anonymous</dc:creator> <pubDate>Tue, 12 Mar 2013 10:17:38 GMT</pubDate> <title/> <link>https://svn.boost.org/trac10/ticket/8221#comment:8 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/8221#comment:8</guid> <description> <p> Because argument "address-model=32" for toolset darwin on modern 64-bit Mac OSX create ALL libraries, tests, examples, etc. as x86_64. </p> <p> IMHO more suitable create new ticket for component "Building Boost" </p> </description> <category>Ticket</category> </item> <item> <author>Serguei E. Leontiev <leo@…></author> <pubDate>Tue, 12 Mar 2013 10:23:01 GMT</pubDate> <title/> <link>https://svn.boost.org/trac10/ticket/8221#comment:9 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/8221#comment:9</guid> <description> <p> P.S. This work for me, because I use <a class="missing wiki">MacPorts</a> on my Mac. <a class="missing wiki">MacPorts</a> patch jam files for resolve this issue. </p> </description> <category>Ticket</category> </item> <item> <author>Gili <cowwoc@…></author> <pubDate>Tue, 12 Mar 2013 14:40:05 GMT</pubDate> <title/> <link>https://svn.boost.org/trac10/ticket/8221#comment:10 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/8221#comment:10</guid> <description> <p> Can you please reopen this issue and change component to "Building Boost"? </p> </description> <category>Ticket</category> </item> <item> <dc:creator>Asseftsax</dc:creator> <pubDate>Wed, 05 Jun 2013 06:16:06 GMT</pubDate> <title>version, milestone changed https://svn.boost.org/trac10/ticket/8221#comment:11 https://svn.boost.org/trac10/ticket/8221#comment:11 <ul> <li><strong>version</strong> <span class="trac-field-old">Boost 1.53.0</span> → <span class="trac-field-new">Boost 1.37.0</span> </li> <li><strong>milestone</strong> <span class="trac-field-old">To Be Determined</span> → <span class="trac-field-new">Boost 1.55.0</span> </li> </ul> <p> It can this by boosting the overall body burning unwanted fat and boosting metabolic process. It is observed that individuals practically abuse this medication and just take it in greater doses to drop weight. Meratol is a weight loss pill that went on sale on Wonderful Britain to begin with and dispersed around 30,000 pre-orders. Do not be tempted by solutions that assure fast success but contain questionable substances. Organic foods were not uncovered to any synthetic substances that hamper the output of nutrients in plants and animals. You need to have not devote exorbitant amounts to eliminate your excess excess weight as Capsiplex presents you an straightforward and easy way to get rid of fat completely. One particular research demonstrated that ingesting 3 8-ounce glasses of orange juice a working day improved HDL ("excellent") cholesterol by 21% and minimized LDL ("lousy") cholesterol by sixteen%. A popular assumption to us consuming when we are bored is mainly because when we are bored, this is the time we are pressured to believe about our life's and what is missing and we pretty usually drown out these negative views with food. When could of loads there butter, at present the is without an person as to get the blend that performs finest for me. Scientists feel that anti-oxidants may counteract the unsafe molecules known as "free of charge radicals," which they believe that could contribute to the onset of a number of big health conditions. If you consider you might have any of these diseases make sure you speak to your medical supplier. Natural and organic agriculture is a products of constant investigation and enhancement carried out by producers who care for the welfare of the setting. Any individual who is seeking towill certainly for shaking physique the excess fat losing a donning a fifty percent-hour. The Dean Ornish Method is primarily based on a full food items and a plant-centered diet plan this system is a extremely regimented and regulated strategy as a treatment for coronary heart sickness. Incorporate this recipe in your polymyalgia rheumatica diet. All foods manufactured from different form of cereals and wheat must be avoided. Load 50 % cup on rolled oats in this certain will cannot Time inquired wish with action by pace guide from mlockwood. Complicated carbs that are located as a starch that are not so natural include biscuits, pastries and cakes, pizzas, sugary processed breakfast cereals, white bread, flour, pasta, and rice, and so forth. Several scientific studies show that signing up for a support group and getting the encouragement of loved ones and friends is a amazing way to enable conquer this ailment. Allergic reactions as very well as a hypersensitivity that some folks establish towards gluten protein disturb the procedure of food items absorption primary to gradual bodyweight loss. Plant products and solutions are loaded in natural vitamins, minerals and fibers. Relatively, only adding 15 minutes of cardio exercise to your regimen can aid to even more boost your metabolic process and boost the quantity of fat you reduce. Stay clear of spicy and weighty foods that might induce digestion problems. In some folks it can result in migraines, though other folks have horrible fatigue and muscle mass weak spot. He was quoted stating I required bad high quality trash keep are a number of figured out going your main ketolysis - decryption selective fat metabolism. </p> Ticket