<?xml version="1.0"?>
<rss version="2.0">
	<channel>
		<title>Sporadic exception EXC_I386_SGL using Visual Studio Code on a Mac</title>
		<link>http://www.allegro.cc/forums/view/617061</link>
		<description>Allegro.cc Forum Thread</description>
		<webMaster>matthew@allegro.cc (Matthew Leverton)</webMaster>
		<lastBuildDate>Thu, 05 Oct 2017 23:39:14 +0000</lastBuildDate>
	</channel>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I have a small program that I built that puts a pink box on the display.  When I run it, I sometimes get the following exception:</p><p><span class="remote-thumbnail"><span class="json">{"name":"611058","src":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/6\/c\/6cf64dde34af5d77d2f96f5e7cf51cab.png","w":438,"h":159,"tn":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/6\/c\/6cf64dde34af5d77d2f96f5e7cf51cab"}</span><img src="http://www.allegro.cc//djungxnpq2nug.cloudfront.net/image/cache/6/c/6cf64dde34af5d77d2f96f5e7cf51cab-240.jpg" alt="611058" width="240" height="87" /></span></p><p>Sometimes I don&#39;t.  Then the pink box appears and all is fine, like this:</p><p><span class="remote-thumbnail"><span class="json">{"name":"611059","src":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/4\/2\/42fdc1f098fb17508a2a206198c2c14a.png","w":659,"h":512,"tn":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/4\/2\/42fdc1f098fb17508a2a206198c2c14a"}</span><img src="http://www.allegro.cc//djungxnpq2nug.cloudfront.net/image/cache/4/2/42fdc1f098fb17508a2a206198c2c14a-240.jpg" alt="611059" width="240" height="186" /></span></p><p>But if I just keep debugging the program, I eventually (maybe 2 or 3 times) get the exception above.  And, if I tell VS Code to keep running the program after the exception, I get a black display with no pink box.  Sometimes this display is unresponsive.  One time the whole mac froze and I had to restart.  </p><p>I&#39;m not sure what could be wrong and looking for clues.  Here&#39;s the full code of the application.  Although, considering it sometimes works, I have a feeling it&#39;s not the code and something obscure that needs to be configured on the Mac.</p><div class="source-code"><div class="toolbar"><span class="button numbers"><b>#</b></span><span class="button select">Select</span><span class="button expand">Expand</span></div><div class="inner"><span class="number">  1</span><span class="p">#define ALLEGRO_NO_MAGIC_MAIN</span>
<span class="number">  2</span><span class="p">#include &lt;allegro5/allegro.h&gt;</span>
<span class="number">  3</span><span class="p">#include &lt;iostream&gt;</span>
<span class="number">  4</span><span class="k1">using</span> <span class="k1">namespace</span> std<span class="k2">;</span>
<span class="number">  5</span>
<span class="number">  6</span><span class="k1">const</span> <span class="k1">int</span> BOUNCER_SIZE <span class="k3">=</span> <span class="n">32</span><span class="k2">;</span>
<span class="number">  7</span>
<span class="number">  8</span><span class="k1">int</span> real_main<span class="k2">(</span><span class="k1">int</span> argc, <span class="k1">char</span> <span class="k3">*</span><span class="k3">*</span>argv<span class="k2">)</span>
<span class="number">  9</span><span class="k2">{</span>
<span class="number"> 10</span>    <a href="http://www.allegro.cc/manual/ALLEGRO_DISPLAY"><span class="a">ALLEGRO_DISPLAY</span></a> <span class="k3">*</span>display <span class="k3">=</span> NULL<span class="k2">;</span>
<span class="number"> 11</span>
<span class="number"> 12</span>    <span class="k1">if</span> <span class="k2">(</span><span class="k3">!</span><a href="http://www.allegro.cc/manual/al_init"><span class="a">al_init</span></a><span class="k2">(</span><span class="k2">)</span><span class="k2">)</span>
<span class="number"> 13</span>    <span class="k2">{</span>
<span class="number"> 14</span>        <a href="http://www.delorie.com/djgpp/doc/libc/libc_345.html" target="_blank">fprintf</a><span class="k2">(</span>stderr, <span class="s">"failed to initialize allegro!\n"</span><span class="k2">)</span><span class="k2">;</span>
<span class="number"> 15</span>        <span class="k1">return</span> <span class="k3">-</span><span class="n">1</span><span class="k2">;</span>
<span class="number"> 16</span>    <span class="k2">}</span>
<span class="number"> 17</span>
<span class="number"> 18</span>    display <span class="k3">=</span> <a href="http://www.allegro.cc/manual/al_create_display"><span class="a">al_create_display</span></a><span class="k2">(</span><span class="n">640</span>, <span class="n">480</span><span class="k2">)</span><span class="k2">;</span>
<span class="number"> 19</span>    <span class="k1">if</span> <span class="k2">(</span><span class="k3">!</span>display<span class="k2">)</span>
<span class="number"> 20</span>    <span class="k2">{</span>
<span class="number"> 21</span>        <a href="http://www.delorie.com/djgpp/doc/libc/libc_345.html" target="_blank">fprintf</a><span class="k2">(</span>stderr, <span class="s">"failed to create display!\n"</span><span class="k2">)</span><span class="k2">;</span>
<span class="number"> 22</span>        <span class="k1">return</span> <span class="k3">-</span><span class="n">1</span><span class="k2">;</span>
<span class="number"> 23</span>    <span class="k2">}</span>
<span class="number"> 24</span>
<span class="number"> 25</span>
<span class="number"> 26</span>    <a href="http://www.allegro.cc/manual/ALLEGRO_BITMAP"><span class="a">ALLEGRO_BITMAP</span></a> <span class="k3">*</span>bouncer <span class="k3">=</span> NULL<span class="k2">;</span>
<span class="number"> 27</span>    bouncer <span class="k3">=</span> <a href="http://www.allegro.cc/manual/al_create_bitmap"><span class="a">al_create_bitmap</span></a><span class="k2">(</span>BOUNCER_SIZE, BOUNCER_SIZE<span class="k2">)</span><span class="k2">;</span>
<span class="number"> 28</span>    <span class="k1">if</span> <span class="k2">(</span><span class="k3">!</span>bouncer<span class="k2">)</span>
<span class="number"> 29</span>    <span class="k2">{</span>
<span class="number"> 30</span>        <a href="http://www.delorie.com/djgpp/doc/libc/libc_345.html" target="_blank">fprintf</a><span class="k2">(</span>stderr, <span class="s">"failed to create bouncer bitmap!\n"</span><span class="k2">)</span><span class="k2">;</span>
<span class="number"> 31</span>        <a href="http://www.allegro.cc/manual/al_destroy_display"><span class="a">al_destroy_display</span></a><span class="k2">(</span>display<span class="k2">)</span><span class="k2">;</span>
<span class="number"> 32</span>        <span class="k1">return</span> <span class="k3">-</span><span class="n">1</span><span class="k2">;</span>
<span class="number"> 33</span>    <span class="k2">}</span>
<span class="number"> 34</span>    <a href="http://www.allegro.cc/manual/al_set_target_bitmap"><span class="a">al_set_target_bitmap</span></a><span class="k2">(</span>bouncer<span class="k2">)</span><span class="k2">;</span>
<span class="number"> 35</span>    <a href="http://www.allegro.cc/manual/al_clear_to_color"><span class="a">al_clear_to_color</span></a><span class="k2">(</span><a href="http://www.allegro.cc/manual/al_map_rgb"><span class="a">al_map_rgb</span></a><span class="k2">(</span><span class="n">255</span>, <span class="n">0</span>, <span class="n">255</span><span class="k2">)</span><span class="k2">)</span><span class="k2">;</span>
<span class="number"> 36</span>    <a href="http://www.allegro.cc/manual/al_set_target_bitmap"><span class="a">al_set_target_bitmap</span></a><span class="k2">(</span><a href="http://www.allegro.cc/manual/al_get_backbuffer"><span class="a">al_get_backbuffer</span></a><span class="k2">(</span>display<span class="k2">)</span><span class="k2">)</span><span class="k2">;</span>
<span class="number"> 37</span>
<span class="number"> 38</span>    <span class="k1">while</span> <span class="k2">(</span><span class="n">1</span><span class="k2">)</span>
<span class="number"> 39</span>    <span class="k2">{</span>
<span class="number"> 40</span>
<span class="number"> 41</span>        <a href="http://www.allegro.cc/manual/al_clear_to_color"><span class="a">al_clear_to_color</span></a><span class="k2">(</span><a href="http://www.allegro.cc/manual/al_map_rgb"><span class="a">al_map_rgb</span></a><span class="k2">(</span><span class="n">0</span>, <span class="n">0</span>, <span class="n">0</span><span class="k2">)</span><span class="k2">)</span><span class="k2">;</span>
<span class="number"> 42</span>        <a href="http://www.allegro.cc/manual/al_draw_bitmap"><span class="a">al_draw_bitmap</span></a><span class="k2">(</span>bouncer, <span class="n">100</span>, <span class="n">100</span>, <span class="n">0</span><span class="k2">)</span><span class="k2">;</span>
<span class="number"> 43</span>        <a href="http://www.allegro.cc/manual/al_flip_display"><span class="a">al_flip_display</span></a><span class="k2">(</span><span class="k2">)</span><span class="k2">;</span>
<span class="number"> 44</span>    <span class="k2">}</span>
<span class="number"> 45</span>
<span class="number"> 46</span>    <a href="http://www.allegro.cc/manual/al_destroy_display"><span class="a">al_destroy_display</span></a><span class="k2">(</span>display<span class="k2">)</span><span class="k2">;</span>
<span class="number"> 47</span>
<span class="number"> 48</span>    <span class="k1">return</span> <span class="n">1</span><span class="k2">;</span>
<span class="number"> 49</span><span class="k2">}</span>
<span class="number"> 50</span>
<span class="number"> 51</span><span class="k1">int</span> main<span class="k2">(</span><span class="k1">int</span> argc, <span class="k1">char</span> <span class="k3">*</span><span class="k3">*</span>argv<span class="k2">)</span>
<span class="number"> 52</span><span class="k2">{</span>
<span class="number"> 53</span>    <span class="k1">return</span> <a href="http://www.allegro.cc/manual/al_run_main"><span class="a">al_run_main</span></a><span class="k2">(</span>argc, argv, real_main<span class="k2">)</span><span class="k2">;</span>
<span class="number"> 54</span><span class="k2">}</span>
</div></div><p>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Onewing)</author>
		<pubDate>Sun, 24 Sep 2017 03:43:54 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Strange, looks like it should work. The only thing I can think of is that you might be linking against the wrong version of Allegro. Would that be possible?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (beoran)</author>
		<pubDate>Sun, 24 Sep 2017 12:40:12 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Sounds reminiscent of <a href="https://github.com/liballeg/allegro5/issues/798">https://github.com/liballeg/allegro5/issues/798</a>, we&#39;re still investigating (I&#39;m having trouble getting this to reproduce on my mac).</p><p>EDIT: Actually... did you install via homebrew? I see this stackoverflow issue that seems similar to yours: <a href="https://stackoverflow.com/questions/20114920/can-an-exec-bad-instruction-sigill-on-dyld-my-fault">https://stackoverflow.com/questions/20114920/can-an-exec-bad-instruction-sigill-on-dyld-my-fault</a> and <a href="https://github.com/Homebrew/legacy-homebrew/issues/38814">https://github.com/Homebrew/legacy-homebrew/issues/38814</a>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (SiegeLord)</author>
		<pubDate>Mon, 25 Sep 2017 05:44:42 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Updated this post at the bottom.</p><p>Thanks, SiegeLord and beoran!  I appreciate the thoughts/suggestions. </p><p>I tried to uninstall allegro via homebrew and install again with &quot;brew install --build-bottle allegro.&quot;  I got the same results.  I&#39;ll have some time tomorrow to play around with this more and will read those articles a little closer.</p><p>At this point, I&#39;m trying to rule things out.  Things I&#39;m thinking of:
</p><ul><li><p>Is it version 5.2.2?  I will try an earlier version of 5.
</p></li><li><p>Does version 4 work?
</p></li><li><p>Do I have multiple versions of allegro or a corrupted version somehow?
</p></li><li><p>Is it Visual Code?  During the speedhack in 2015, I used Xcode successfully.  
</p></li><li><p>Is it the version of OSX I have?  If the project I built for speedhack in 2015 doesn&#39;t work in Xcode now, then my suspicion gravitates to this. 
</p></li><li><p>Is there something wrong with my code?  I think I can rule this one out.
</p></li><li><p>Is there something wrong with how I&#39;m compiling this?
</p></li><li><p>Did I configure the debugger wrong?  In VS Code, you have to wire this in yourself.  </p></li></ul><p>Other things I should look into? </p><p><b>*** Edit on 9.27.17***</b><br />Not sure if this is a clue, but I discovered in the current setup, if I move the display window of the app across my monitors, I always get the following exception:<br /><span class="remote-thumbnail"><span class="json">{"name":"611062","src":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/f\/7\/f72fb2c8337eb04316577192f6933298.png","w":938,"h":453,"tn":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/f\/7\/f72fb2c8337eb04316577192f6933298"}</span><img src="http://www.allegro.cc//djungxnpq2nug.cloudfront.net/image/cache/f/7/f72fb2c8337eb04316577192f6933298-240.jpg" alt="611062" width="240" height="115" /></span>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Onewing)</author>
		<pubDate>Wed, 27 Sep 2017 10:34:51 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Could you link with the debug version of Allegro and then trace into the ogl_flush_vertex_cache function to see if anything is wrong there? </p><p>Also, is it possible on OSX that the bitmap gets &quot;lost&quot; like on Windows?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (beoran)</author>
		<pubDate>Wed, 27 Sep 2017 21:06:08 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Hold on... do you have a backtrace for that other exception? Is it similar to this one?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (SiegeLord)</author>
		<pubDate>Thu, 28 Sep 2017 10:23:53 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Here&#39;s what I see on the call stack for the original exception I posted:</p><p><span class="remote-thumbnail"><span class="json">{"name":"611065","src":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/e\/3\/e3ff352ebf58897ee70444693cd4de52.png","w":952,"h":220,"tn":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/e\/3\/e3ff352ebf58897ee70444693cd4de52"}</span><img src="http://www.allegro.cc//djungxnpq2nug.cloudfront.net/image/cache/e/3/e3ff352ebf58897ee70444693cd4de52-240.jpg" alt="611065" width="240" height="55" /></span></p><p>Beoran, how do I &quot;link with the debug version&quot;?  Here&#39;s how I compile the app:</p><div class="source-code"><div class="toolbar"><span class="button numbers"><b>#</b></span><span class="button select">Select</span><span class="button expand">Expand</span></div><div class="inner"><span class="number"> 1</span>g<span class="k3">+</span><span class="k3">+</span> <span class="k3">-</span>g helloworld.cpp <span class="k3">-</span>Wall <span class="k3">-</span>ansi <span class="k3">-</span>o test20 <span class="k3">-</span>L<span class="k3">/</span>usr<span class="k3">/</span>local<span class="k3">/</span>lib<span class="k3">/</span> <span class="k3">-</span>I<span class="k3">/</span>usr<span class="k3">/</span>local<span class="k3">/</span>include<span class="k3">/</span> <span class="k3">-</span>lallegro
</div></div><p>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Onewing)</author>
		<pubDate>Fri, 29 Sep 2017 08:48:34 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Does brew provide a debug version of Allegro? Otherwise you&#39;ll probably have to compile it yourself.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (beoran)</author>
		<pubDate>Fri, 29 Sep 2017 22:59:58 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>@beoran, I am not sure.  I was unable to find any documentation on this or how to go about it.  <img src="http://www.allegro.cc/forums/smileys/cry.gif" alt=":&#39;(" /></p><p>Update:<br />Here&#39;s where I&#39;m at.  <br />I&#39;ve moved all the code into the main function, commented out &quot;#define ALLEGRO_NO_MAGIC_MAIN&quot; and I&#39;m linking with &quot;-lallegro_main&quot;.  The original EXC_I386_SGL issue doesn&#39;t seem to be happening any more, but behavior is still odd.  Sometimes, it executes perfectly with the expected output.  Sometimes it executes and the pink box is not there.  Sometimes, I get an exception, examples below.  And, every once in a while, it crashes my Mac.  So, still not stable.</p><p><span class="remote-thumbnail"><span class="json">{"name":"611066","src":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/3\/6\/364b284b5e37af8ebefffa90e824fa9e.png","w":519,"h":362,"tn":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/3\/6\/364b284b5e37af8ebefffa90e824fa9e"}</span><img src="http://www.allegro.cc//djungxnpq2nug.cloudfront.net/image/cache/3/6/364b284b5e37af8ebefffa90e824fa9e-240.jpg" alt="611066" width="240" height="167" /></span><br /><span class="remote-thumbnail"><span class="json">{"name":"611067","src":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/7\/1\/71f0233b365a6a21ec5faf4aa50d3aca.png","w":520,"h":209,"tn":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/7\/1\/71f0233b365a6a21ec5faf4aa50d3aca"}</span><img src="http://www.allegro.cc//djungxnpq2nug.cloudfront.net/image/cache/7/1/71f0233b365a6a21ec5faf4aa50d3aca-240.jpg" alt="611067" width="240" height="96" /></span>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Onewing)</author>
		<pubDate>Sat, 30 Sep 2017 12:03:55 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p><a href="https://stackoverflow.com/questions/28758465/dyldgdb-image-notifier-exception-when-i-run-my-application-in-device">https://stackoverflow.com/questions/28758465/dyldgdb-image-notifier-exception-when-i-run-my-application-in-device</a></p><p>Hmm, this is really strange behaviour. I found the link above, for what it is worth, but it seems weird that the exception is in different functions.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (beoran)</author>
		<pubDate>Sun, 01 Oct 2017 00:46:22 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>It is strange...but maybe not that strange?</p><p>I used VS Code option to remove all breakpoints, even though I didn&#39;t have any I had set.  No change in behavior.</p><p>I opened up my work Mac laptop and did the following:</p><p>Installed homebrew<br />ran &quot;brew install allegro&quot;<br />It installed dependencies<br />Copied over the &quot;tasks.json&quot; file that is used to compile the code<br />Copied the same code to the new machine.<br />Compiled.  I didn&#39;t attach any debuggers and just ran right from Finder.<br />First run:  good, expected behavior<br />Second run:  good, expected behavior<br />Third run:  OS freeze, had to shut down</p><p>At this point, it feels like it has to do with Mac, VS Code or allegro 5.2.2.  <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Onewing)</author>
		<pubDate>Sun, 01 Oct 2017 09:32:01 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Some good news. I installed VS Code on my mac, tried your code and indeed, I get EXC_I386_SGL sporadically when I run it. However, I get no issues if I run the program manually from the command line or finder. So far, it seems like some VS Code/lldb/allegro issue.</p><p>This is separate from your other problems, but those now again sound like the bug I linked in the other thread: <a href="https://github.com/liballeg/allegro5/issues/798">https://github.com/liballeg/allegro5/issues/798</a></p><p>Can you see if you can find the same system logs the person in that bug is looking at?</p><p>I&#39;ll keep working on it on my end, meanwhile. I really want to fix this, and I appreciate your keeping at it.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (SiegeLord)</author>
		<pubDate>Mon, 02 Oct 2017 04:31:59 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Thanks, SiegeLord.  I appreciate you sticking with me.  </p><p>I did three runs (all were bad runs) and captured Console messages plus a set of messages right after.  They are all attached.  </p><p>What I see is each run had the following: <br />SLPSGetCurrentProcess(): This call is deprecated and should not be called anymore.<br />set_foreground_operation_state(): This call is deprecated and should not be called anymore.</p><p>And shortly after that, there would be a message from the kernel process:<br />NVDA(Graphics): Channel exception! Exception type = 0x20 DMA Engine Error (PBDMA Error)</p><p><b>[Update:  10-4-17]</b><br />The Nvidia thing above got me thinking...maybe it&#39;s a problem with the graphics driver.  I updated to macOS High Sierra, version 10.13.  I ran the app successfully with correct output 10 times in a row.  Previously, the record was 3.  While I&#39;m excited and hopeful that the worst is now behind me, I also wish I knew what the problem was and how it might&#39;ve been fixed.</p><p>I still get the deprecated calls above in the Console when running the app.  Technically, according to <a href="https://github.com/liballeg/allegro5/issues/749">this</a>, I think this should be resolved.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Onewing)</author>
		<pubDate>Wed, 04 Oct 2017 10:55:55 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Huh! That&#39;s a bit anti-climatic. Was that 10 times in a row until a crash or 10 times and you got satisfied?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (SiegeLord)</author>
		<pubDate>Thu, 05 Oct 2017 06:00:19 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>10 times with no crash, more than 3x the max I could go before.  So I&#39;m feeling pretty confident.   </p><p>Tomorrow, I&#39;m going to run through the other allegro 5 API tutorials to get a refresher.  Fingers crossed this doesn&#39;t come back.</p><p>I haven&#39;t upgraded my work laptop and the error still happens there.  If you wanted me to try any kind of patch, I could test it out on that machine.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Onewing)</author>
		<pubDate>Thu, 05 Oct 2017 08:47:28 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Unfortunately I am still nowhere closer to figuring out what exactly could cause this. It&#39;d really be nice to know which operation actually causes this (is it display creation? bitmap creation? one of the drawing commands?). If you could log how far the program gets before it crashes, I think that would be illuminating.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (SiegeLord)</author>
		<pubDate>Thu, 05 Oct 2017 10:22:24 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I checked but the osx GL driver uses way too few ALLEGRO_DEBUG statements. We would have to add quite a few of them to get useful logging.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (beoran)</author>
		<pubDate>Thu, 05 Oct 2017 23:39:14 +0000</pubDate>
	</item>
</rss>
