[macOS/OS X] Neoascetic's nightly builds and others

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

[macOS/OS X] Neoascetic's nightly builds and others

by Morn76 » Sun Apr 27, 2014 16:16

Nightly Minetest builds (for macOS 10.12 Sierra) by forum user neoascetic:

https://github.com/krondor-game/minetest/releases

-------------------------------------------------------------------------------------------

Stable release packages for older versions of OS X


Installation

Just unzip the file and move minetest to /Applications/.

If you get a warning on Yosemite that the MT app is not signed, you can either manually override Gatekeeper by Control-clicking the app and choosing to open it or change this Gatekeeper setting globally (under System Preferences → Security).

These builds include FreeType, cURL, gettext, LevelDB, LuaJIT, and hiredis support. The Pixture and Voxelgarden subgames are also included.

Alternative: Installing via Homebrew
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
brew install minetest
brew linkapps


Notes and issues—Please read this first before reporting problems!

  • Worlds are stored in "~/Library/Application Support/minetest/worlds/" (where '~' stands for your user's home directory).
  • Put additional subgames into "~/Library/Application Support/minetest/games/". (Like the mods folder, you need to create this folder first.)
  • Put mods in "~/Library/Application Support/minetest/mods/" (You may have to create that folder first. Also note that mods need to be activated in the world's "Configure" menu.) In addition to the built-in MT mod store, you can use other tools like MT-GitSync to install mods.
  • Use two finger tap on trackpad for right click
  • In older builds the Shift key does not work as a game control. Use "e" for sneaking/climbing down ladders (activate in 'Settings -> Change keys').
  • In the latest build, you may have to define Shift for sneaking in the keys menu again. Because "Shift" works on macOS, "LShift" does not.
  • Looking around with the trackpad/mouse can become sluggish when the frame rate hits 60 fps. Increasing your fps_max in minetest.conf (e.g., "fps_max = 200") helps if this issue bothers you. Patches or pull requests to solve this bug are welcome. :-)
  • Quit Minetest by hitting Escape to open the in-game menu, then return to the main menu from there, and finally press Escape again inside the main menu. Simply closing the window should also work in principle, but sometimes MT will crash on exit, so I recommend to always exit your world first and quit from the main menu.
  • In singleplayer, make sure a subgame name (e.g. "MINETEST") is printed in large letters above the menu tabs like in this screenshot: http://i.imgur.com/oZrJsJl.png If no subgame is selected, click the corresponding game icon in the lower left.
  • Resizing the window causes problems with non-responsive GUI elements on the Mac. Instead of resizing, you can edit "~/Library/Application Support/minetest/minetest.conf" and add the line "fullscreen = true" to it, which will make MT start in fullscreen mode. Alternatively, you can use screenW and screenH in minetest.conf to set the default resolution.
  • If you have a French keyboard (AZERTY), your "M" key will not work in chat.
  • If you would like to start the Minetest server from a terminal, run "/Applications/minetest.app/Contents/MacOS/minetest --server".
  • On unsupported CPUs, you may see a crash with "Exception Type: EXC_BAD_INSTRUCTION (SIGILL)". In that case you could use the build script below to compile your own binary. Or you could use the Windows binary on macOS via the Wine Windows emulation layer. Be advised however that installing Wine on your system may make it susceptible to Windows malware!

Compiling your own binary
Install the necessary dependencies, e.g. with Homebrew:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
brew install cmake freetype gettext hiredis irrlicht jpeg leveldb libogg libvorbis luajit

You can compile Minetest on macOS/OS X and create a zipped application bundle with:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
cmake .
make package

Important: Make sure to compile MT without -ffast-math (set in src/CMakeLists.txt): https://github.com/minetest/minetest/issues/4274

If that does not work, you can use this shell script to compile the binaries: https://github.com/mdoege/mtmake-osx It may also work on older OS X versions. See the included README file for instructions.
Last edited by Morn76 on Fri Feb 10, 2017 21:43, edited 135 times in total.
 

User avatar
Inocudom
Member
 
Posts: 2889
Joined: Sat Sep 29, 2012 01:14
IRC: Inocudom
In-game: Inocudom

Re: Morn76's Minetest OS X Mavericks builds

by Inocudom » Sun Apr 27, 2014 21:02

I myself use Windows 7 64-bit, but it is good to know that OS X builds are finally being made.
Last edited by sfan5 on Mon Apr 28, 2014 14:58, edited 1 time in total.
Reason: overquoting
 

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

Re: Morn76's Minetest OS X Mavericks builds

by Morn76 » Sun Apr 27, 2014 21:12

Inocudom wrote:I myself use Windows 7 64-bit, but it is good to know that OS X builds are finally being made.


Actually builds have been made before, but they were eventually discontinued because they were done by single contributors who lost interest at some point.

This time I hope I have streamlined the build process so that every Minetest Mac user can contribute a build when I'm too busy. That's why I'm also still looking for contributors who want access rights to the GitHub repo. OmniStudent is already onboard.
 

OmniStudent
Member
 
Posts: 261
Joined: Sat Nov 03, 2012 06:40

Re: Morn76's Minetest OS X Mavericks builds

by OmniStudent » Mon Apr 28, 2014 05:09

The latest realease wouldn't work until I did

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
brew install hiredis


but then everything worked fine! Played with shaders, filtering, waving trees, everything and still FPS never went below 20.
 

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

Re: Morn76's Minetest OS X Mavericks builds

by Morn76 » Mon Apr 28, 2014 09:59

Oops, libhiredis was supposed to be included of course. I've uploaded a new ZIP file. So apparently I always have to count libraries like sheep in a pen and make sure there are (at the moment) 18. I think I had several libs folders at some point and probably managed to delete the wrong one. :-)

Thanks for testing this!
 

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

Re: Morn76's Minetest OS X Mavericks builds

by Morn76 » Tue Apr 29, 2014 19:14

I've just uploaded a new build of the latest MT git version. This time it's a fully optimized Release build that should perform noticeably better than earlier builds.

Edit: There is now also a second ZIP file that is supposed to work on older CPUs.
 

OmniStudent
Member
 
Posts: 261
Joined: Sat Nov 03, 2012 06:40

Re: Morn76's Minetest OS X Mavericks builds

by OmniStudent » Wed Apr 30, 2014 04:04

Thanks!
Tested the current version (core2test_minetest-osx-bin-20140429.4b44d35.zip) and it works perfectly. Framerates of 40-60 on my brand new macbook pro. Despite getting roughly the same framerates on the laste version, graphics feel "smoother" in this version.
Also, rendering of far away landscapes seems to be considerably faster. Is this because the program now makes better use of CPUs?
 

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

Re: Morn76's Minetest OS X Mavericks builds

by Morn76 » Wed Apr 30, 2014 08:45

OmniStudent, yes generally optimization is turned on now so framerates should be better. The difference is that core2test is compiled without some of the vector instructions that are causing crashes on older CPUs. On current i5/i7 CPUs, core2test might be a tad slower than the "normal" build, although probably imperceptibly. I'm aiming for a single build for all Mavericks-supported machines if possible.

I think the core2test build might still fail on a Core 2 because of dynamic libraries which could contain "bad" vector instructions because they were compiled on my machine. The main MT binary and libIrrlicht.a (which is a Homebrew precompiled binary) should be fine. I'll have to see what raffahacks reports.
 

OmniStudent
Member
 
Posts: 261
Joined: Sat Nov 03, 2012 06:40

Re: Morn76's Minetest OS X Mavericks builds

by OmniStudent » Wed Apr 30, 2014 16:49

I didn't realize that the core2test version was for older macs :/ Anyway its the only optimized version I've tried and there was a noticeable difference.

A single build sound right. Although I would rather see Minetest on nitrous oxide, I respect the decision to keep it accessible for older computers, and that's along that philosophy.

My old computer is a Core 2. Core2test failed on this one :(
 

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

Re: Morn76's Minetest OS X Mavericks builds

by Morn76 » Wed Apr 30, 2014 17:21

I think you will always get the best performance by compiling Minetest on your own machine, including all dependencies like Irrlicht. Because the Irrlicht bottle is Core 2-compatible too of course. But any gain would probably be something like 5 fps or so and hard to notice. So in practice a one-size-fits-all binary should work I think.

Actually with clang, we can also use "-Os", which is an even higher optimization than gcc's maximum "-O3". Might be worth a try for maximum performance. Xcode seems to default for -Os for release builds, so I guess it's pretty safe.

The Core2test fail was somewhat expected because it's still using the same dynamic libraries as before. Maybe the problem is libvorbis, because I could definitely see it would use SSE4.2 vector instructions for faster decoding. So I think what I could try is build bottles myself ("brew bottle" I think), because I believe Homebrew bottles are always Core 2 compatible. Whereas if you install with "brew install" and no bottle is available, the code will be compiled for your CPU's features.
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

Re: Morn76's Minetest OS X Mavericks builds

by sfan5 » Wed Apr 30, 2014 17:32

Morn76 wrote:Actually with clang, we can also use "-Os", which is an even higher optimization than gcc's maximum "-O3". Might be worth a try for maximum performance.

-Os produces executables as small as possible.
-O3 produces executables as fast as possible.
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

Re: Morn76's Minetest OS X Mavericks builds

by Morn76 » Wed Apr 30, 2014 17:53

sfan5 wrote:
Morn76 wrote:Actually with clang, we can also use "-Os", which is an even higher optimization than gcc's maximum "-O3". Might be worth a try for maximum performance.

-Os produces executables as small as possible.
-O3 produces executables as fast as possible.


Somewhere in the Xcode documentation it said -Os = smallest and fastest, but it was a bit vague whether that meant any speed improvement over -O3. But I suppose a smaller binary is also welcome. :-)

Checking my Homebrew cache directory, it looks like most installed libraries come from bottles already and should therefore be Core2-compatible. (Strangely enough, Irrlicht's bottle isn't there, although I distinctly recall it was from a bottle too.) Basically it looks like only luajit and hiredis have to be redone.

I wish there was an easy way to test an OS X binary or dynamic library (or I guess I should say Mach binary/library) for instructions like SSE4.2 that cause problems on Core 2s that can only do SSE4.1. But I haven't found anything so far. The "file" command doesn't detect that kind of thing either.
 

minetesty
New member
 
Posts: 3
Joined: Thu May 01, 2014 18:04
In-game: Gorgonzola

Re: Morn76's Minetest OS X Mavericks builds

by minetesty » Fri May 02, 2014 16:49

Wow! Excellent job with this! Last time I checked into this project, I could not figure out how to install the dependencies on a Mac system (Linux user here). I am trying to build using your scripts, and I am running into trouble. Is there a certain folder I should build from? Which folder did you build from?

I have OS X 10.9.2 Mavericks.

I installed homebrew with:
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

I installed dependencies with:
brew install cmake freetype gettext hiredis irrlicht jpeg leveldb libogg libvorbis

During build, I was asked "Please specify now where this library can be found (or write 'quit' to abort):". I used another window to search for the libraries with:
sudo find / | grep LIBRARYNAMEHERE

I answered that missing library question with:
/usr/local/lib/
And also with:
/usr/X11/lib/

The build then went to 65% and stopped. Any ideas?
 

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

Re: Morn76's Minetest OS X Mavericks builds

by Morn76 » Fri May 02, 2014 16:54

Did you install Xcode and Xcode command lines tools too?
 

OmniStudent
Member
 
Posts: 261
Joined: Sat Nov 03, 2012 06:40

Re: Morn76's Minetest OS X Mavericks builds

by OmniStudent » Sun May 04, 2014 07:23

Ran into a crash when I tried to get online mods, under the mods tab:

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
Process:         minetest [22393]
Path:            /Volumes/VOLUME//Users/*/minetest.app/Contents/MacOS/../Resources/bin/minetest
Identifier:      celeron55.minetest
Version:         20140429.4b44d35 (20140429.4b44d35)
Code Type:       X86-64 (Native)
Parent Process:  launchd [152]
Responsible:     minetest [22393]
User ID:         501

Date/Time:       2014-05-04 09:19:03.207 +0200
OS Version:      Mac OS X 10.9.2 (13C64)
Report Version:  11
Anonymous UUID:  A2210079-D8CA-E931-E4AE-22DBE161EF96

Sleep/Wake UUID: D6F551AD-A3DF-4D62-9FCE-926F4645BBC7

Crashed Thread:  5  AsyncWorkTh_0

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0xfffffffd15115028

VM Regions Near 0xfffffffd15115028:
--> shared memory          00007fffffffe000-00007ffffffff000 [    4K] r-x/r-x SM=SHM 
   

Thread 0:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib           0x00007fff8b2baa3a __semwait_signal + 10
1   libsystem_c.dylib                0x00007fff86199dc0 nanosleep + 200
2   minetest                         0x0000000104a59a2f irr::CIrrDeviceMacOSX::sleep(unsigned int, bool) + 95
3   minetest                         0x0000000104780274 GUIEngine::cloudPostProcess() + 144
4   minetest                         0x000000010477fbe1 GUIEngine::run() + 247
5   minetest                         0x000000010477f3d4 GUIEngine::GUIEngine(irr::IrrlichtDevice*, irr::gui::IGUIElement*, IMenuManager*, irr::scene::ISceneManager*, MainMenuData*, bool&) + 1386
6   minetest                         0x00000001047c8597 main + 32986
7   libdyld.dylib                    0x00007fff8104f5fd start + 1

Thread 1:
0   libsystem_kernel.dylib           0x00007fff8b2bae6a __workq_kernreturn + 10
1   libsystem_pthread.dylib          0x00007fff84ea2f08 _pthread_wqthread + 330
2   libsystem_pthread.dylib          0x00007fff84ea5fb9 start_wqthread + 13

Thread 2:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib           0x00007fff8b2bb662 kevent64 + 10
1   libdispatch.dylib                0x00007fff8b80443d _dispatch_mgr_invoke + 239
2   libdispatch.dylib                0x00007fff8b804152 _dispatch_mgr_thread + 52

Thread 3:
0   libsystem_kernel.dylib           0x00007fff8b2bae6a __workq_kernreturn + 10
1   libsystem_pthread.dylib          0x00007fff84ea2f08 _pthread_wqthread + 330
2   libsystem_pthread.dylib          0x00007fff84ea5fb9 start_wqthread + 13

Thread 4:: com.apple.audio.IOThread.client
0   libsystem_kernel.dylib           0x00007fff8b2b6a1a mach_msg_trap + 10
1   libsystem_kernel.dylib           0x00007fff8b2b5d18 mach_msg + 64
2   com.apple.audio.CoreAudio        0x00007fff89d23918 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
3   com.apple.audio.CoreAudio        0x00007fff89d238a6 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
4   com.apple.audio.CoreAudio        0x00007fff89d2202e HALC_ProxyIOContext::IOWorkLoop() + 950
5   com.apple.audio.CoreAudio        0x00007fff89d21bcd HALC_ProxyIOContext::IOThreadEntry(void*) + 97
6   com.apple.audio.CoreAudio        0x00007fff89d21a8d HALB_IOThread::Entry(void*) + 75
7   libsystem_pthread.dylib          0x00007fff84ea1899 _pthread_body + 138
8   libsystem_pthread.dylib          0x00007fff84ea172a _pthread_start + 137
9   libsystem_pthread.dylib          0x00007fff84ea5fc9 thread_start + 13

Thread 5 Crashed:: AsyncWorkTh_0
0   libluajit-5.1.2.dylib            0x00000001051270e7 0x1050ef000 + 229607
1   libluajit-5.1.2.dylib            0x00000001050fac3d 0x1050ef000 + 48189
2   libluajit-5.1.2.dylib            0x0000000105160e63 0x1050ef000 + 466531
3   libluajit-5.1.2.dylib            0x00000001050f4518 0x1050ef000 + 21784
4   libluajit-5.1.2.dylib            0x000000010515ee6b 0x1050ef000 + 458347
5   libluajit-5.1.2.dylib            0x000000010515d4fe 0x1050ef000 + 451838
6   libluajit-5.1.2.dylib            0x000000010515c3ee 0x1050ef000 + 447470
7   libluajit-5.1.2.dylib            0x000000010515a6d6 0x1050ef000 + 440022
8   libluajit-5.1.2.dylib            0x0000000105157238 0x1050ef000 + 426552
9   libluajit-5.1.2.dylib            0x0000000105102fa3 0x1050ef000 + 81827
10  libluajit-5.1.2.dylib            0x00000001050f2669 0x1050ef000 + 13929
11  libluajit-5.1.2.dylib            0x0000000105101c44 lua_loadx + 84
12  libluajit-5.1.2.dylib            0x0000000105124a55 0x1050ef000 + 219733
13  libluajit-5.1.2.dylib            0x00000001050f2328 0x1050ef000 + 13096
14  libluajit-5.1.2.dylib            0x0000000105101604 lua_pcall + 100
15  minetest                         0x0000000104696b72 AsyncWorkerThread::Thread() + 708
16  minetest                         0x000000010468e532 JThread::TheThread(void*) + 52
17  libsystem_pthread.dylib          0x00007fff84ea1899 _pthread_body + 138
18  libsystem_pthread.dylib          0x00007fff84ea172a _pthread_start + 137
19  libsystem_pthread.dylib          0x00007fff84ea5fc9 thread_start + 13

Thread 6:: AsyncWorkTh_1
0   libsystem_kernel.dylib           0x00007fff8b2ba9aa __select + 10
1   libcurl.4.dylib                  0x00007fff8698cd6c Curl_poll + 555
2   libcurl.4.dylib                  0x00007fff86987f17 curl_multi_wait + 487
3   libcurl.4.dylib                  0x00007fff8698195a curl_easy_perform + 218
4   minetest                         0x00000001047a1ed7 httpfetch_sync(HTTPFetchRequest const&, HTTPFetchResult&) + 110
5   minetest                         0x000000010472b562 fetchJsonValue(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, curl_slist*) + 213
6   minetest                         0x0000000104803919 getModstoreUrl(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >) + 117
7   minetest                         0x00000001046ad49e ModApiMainMenu::l_get_modstore_details(lua_State*) + 258
8   minetest                         0x000000010469532a script_exception_wrapper(lua_State*, int (*)(lua_State*)) + 12
9   libluajit-5.1.2.dylib            0x00000001050f237e 0x1050ef000 + 13182
10  libluajit-5.1.2.dylib            0x0000000105101604 lua_pcall + 100
11  minetest                         0x0000000104696b72 AsyncWorkerThread::Thread() + 708
12  minetest                         0x000000010468e532 JThread::TheThread(void*) + 52
13  libsystem_pthread.dylib          0x00007fff84ea1899 _pthread_body + 138
14  libsystem_pthread.dylib          0x00007fff84ea172a _pthread_start + 137
15  libsystem_pthread.dylib          0x00007fff84ea5fc9 thread_start + 13

Thread 7:: AsyncWorkTh_2
0   libsystem_kernel.dylib           0x00007fff8b2ba9aa __select + 10
1   libcurl.4.dylib                  0x00007fff8698cd6c Curl_poll + 555
2   libcurl.4.dylib                  0x00007fff86987f17 curl_multi_wait + 487
3   libcurl.4.dylib                  0x00007fff8698195a curl_easy_perform + 218
4   minetest                         0x00000001047a1ed7 httpfetch_sync(HTTPFetchRequest const&, HTTPFetchResult&) + 110
5   minetest                         0x000000010472b562 fetchJsonValue(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, curl_slist*) + 213
6   minetest                         0x0000000104803919 getModstoreUrl(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >) + 117
7   minetest                         0x00000001046ad49e ModApiMainMenu::l_get_modstore_details(lua_State*) + 258
8   minetest                         0x000000010469532a script_exception_wrapper(lua_State*, int (*)(lua_State*)) + 12
9   libluajit-5.1.2.dylib            0x00000001050f237e 0x1050ef000 + 13182
10  libluajit-5.1.2.dylib            0x0000000105101604 lua_pcall + 100
11  minetest                         0x0000000104696b72 AsyncWorkerThread::Thread() + 708
12  minetest                         0x000000010468e532 JThread::TheThread(void*) + 52
13  libsystem_pthread.dylib          0x00007fff84ea1899 _pthread_body + 138
14  libsystem_pthread.dylib          0x00007fff84ea172a _pthread_start + 137
15  libsystem_pthread.dylib          0x00007fff84ea5fc9 thread_start + 13

Thread 8:: AsyncWorkTh_3
0   libsystem_kernel.dylib           0x00007fff8b2ba9aa __select + 10
1   libcurl.4.dylib                  0x00007fff8698cd6c Curl_poll + 555
2   libcurl.4.dylib                  0x00007fff86987f17 curl_multi_wait + 487
3   libcurl.4.dylib                  0x00007fff8698195a curl_easy_perform + 218
4   minetest                         0x00000001047a1ed7 httpfetch_sync(HTTPFetchRequest const&, HTTPFetchResult&) + 110
5   minetest                         0x000000010472b562 fetchJsonValue(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, curl_slist*) + 213
6   minetest                         0x0000000104803919 getModstoreUrl(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >) + 117
7   minetest                         0x00000001046ad49e ModApiMainMenu::l_get_modstore_details(lua_State*) + 258
8   minetest                         0x000000010469532a script_exception_wrapper(lua_State*, int (*)(lua_State*)) + 12
9   libluajit-5.1.2.dylib            0x00000001050f237e 0x1050ef000 + 13182
10  libluajit-5.1.2.dylib            0x0000000105101604 lua_pcall + 100
11  minetest                         0x0000000104696b72 AsyncWorkerThread::Thread() + 708
12  minetest                         0x000000010468e532 JThread::TheThread(void*) + 52
13  libsystem_pthread.dylib          0x00007fff84ea1899 _pthread_body + 138
14  libsystem_pthread.dylib          0x00007fff84ea172a _pthread_start + 137
15  libsystem_pthread.dylib          0x00007fff84ea5fc9 thread_start + 13

Thread 9:
0   libsystem_kernel.dylib           0x00007fff8b2b6a1a mach_msg_trap + 10
1   libsystem_kernel.dylib           0x00007fff8b2b5d18 mach_msg + 64
2   com.apple.CoreFoundation         0x00007fff8a6a9155 __CFRunLoopServiceMachPort + 181
3   com.apple.CoreFoundation         0x00007fff8a6a8779 __CFRunLoopRun + 1161
4   com.apple.CoreFoundation         0x00007fff8a6a80b5 CFRunLoopRunSpecific + 309
5   com.apple.AppKit                 0x00007fff892b116e _NSEventThread + 144
6   libsystem_pthread.dylib          0x00007fff84ea1899 _pthread_body + 138
7   libsystem_pthread.dylib          0x00007fff84ea172a _pthread_start + 137
8   libsystem_pthread.dylib          0x00007fff84ea5fc9 thread_start + 13

Thread 5 crashed with X86 Thread State (64-bit):
  rax: 0x000000000000024a  rbx: 0xfffffffd0a87d568  rcx: 0xfffffffd0a87d323  rdx: 0x0000000000000240
  rdi: 0x000000000a878010  rsi: 0x0000000000000248  rbp: 0x0000000000000084  rsp: 0x00000000b029f270
   r8: 0x00000000fffffff7   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
  r12: 0x0000000000000240  r13: 0x0000000000000240  r14: 0x000000000a878010  r15: 0x000000000a897ac8
  rip: 0x00000001051270e7  rfl: 0x0000000000010282  cr2: 0xfffffffd15115028
 
Logical CPU:     2
Error Code:      0x00000006
Trap Number:     14


Binary Images:
         0xa374000 -          0xa545fff  com.apple.audio.units.Components (1.10 - 1.10) <7AB53801-51BD-347E-B267-BCF71C15C023> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
         0xa5ef000 -          0xa5f3ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.0 - 2.6.0f1) <82D2F703-F961-3298-B06F-14B772D23C7B> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
       0x104684000 -        0x104c57ff7 +minetest (0) <94E21E3E-838A-3A60-8987-BBD563567392> /Users/USER/minetest.app/Contents/Resources/bin/minetest
       0x104e8a000 -        0x104e8efff  com.apple.agl (3.2.3 - AGL-3.2.3) <E0ED4789-9DBC-3C88-95F7-CA79E196B4BE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
       0x104e9a000 -        0x104ec6ff7 +libjpeg.8.dylib (0) <ED8F5F52-AADA-37F6-B58D-5D001D6B0580> /Users/USER/minetest.app/Contents/libs/libjpeg.8.dylib
       0x104ed2000 -        0x104ef5fff +libpng16.16.dylib (0) <25C51256-DD0D-389B-AE98-6F2F9DB1349C> /Users/USER/minetest.app/Contents/libs/libpng16.16.dylib
       0x104f00000 -        0x104f04fff +libSM.6.dylib (7.1) <2569F0BC-2FD2-3E19-A985-8AA3E1A192E0> /Users/USER/minetest.app/Contents/libs/libSM.6.dylib
       0x104f0d000 -        0x104f1cfff +libICE.6.dylib (10) <A7151D96-EC8A-3288-B4B1-91A81278381B> /Users/USER/minetest.app/Contents/libs/libICE.6.dylib
       0x104f2e000 -        0x105032ff7 +libX11.6.dylib (10) <7A05088F-A9CE-32FE-8EA6-2CADF88D47AD> /Users/USER/minetest.app/Contents/libs/libX11.6.dylib
       0x10505e000 -        0x105069ff7 +libXext.6.dylib (11) <0E727D24-F959-3264-BCB8-A3C701D7D121> /Users/USER/minetest.app/Contents/libs/libXext.6.dylib
       0x105074000 -        0x105098fff  com.apple.audio.OpenAL (1.7 - 1.7) <182EE5E5-5F0C-315D-A2FB-65139E900B61> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
       0x1050ab000 -        0x1050b0fff +libvorbisfile.3.dylib (0) <1D894804-76B6-39CC-8879-6F45304A42D4> /Users/USER/minetest.app/Contents/libs/libvorbisfile.3.dylib
       0x1050ba000 -        0x1050ddfff +libvorbis.0.dylib (0) <970D2EB7-6627-359D-A477-044BFEDDF27E> /Users/USER/minetest.app/Contents/libs/libvorbis.0.dylib
       0x1050e8000 -        0x1050ebff7 +libogg.0.dylib (0) <062998E8-A18D-3B9C-B432-7A7585668C57> /Users/USER/minetest.app/Contents/libs/libogg.0.dylib
       0x1050ef000 -        0x105170ff7 +libluajit-5.1.2.dylib (2.0.3) <94BAD6AE-584D-3529-9C0F-E499B6FE7C3A> /Users/USER/minetest.app/Contents/libs/libluajit-5.1.2.dylib
       0x10517a000 -        0x10517cfff +libXxf86vm.1.dylib (2) <F0E58614-9731-35BC-9621-A9988146A233> /Users/USER/minetest.app/Contents/libs/libXxf86vm.1.dylib
       0x105188000 -        0x1051f5ff7 +libfreetype.6.dylib (0) <81DC85EE-0920-351D-8B87-AB1F4EA9DE46> /Users/USER/minetest.app/Contents/libs/libfreetype.6.dylib
       0x105213000 -        0x105241ff7 +libleveldb.1.15.dylib (0) <18FD4468-1934-334D-8036-45789C822CB8> /Users/USER/minetest.app/Contents/libs/libleveldb.1.15.dylib
       0x10526a000 -        0x10526ffff +libhiredis.0.10.dylib (0) <FC6D78A4-E9FC-32F9-9A56-4749F344859C> /Users/USER/minetest.app/Contents/libs/libhiredis.0.10.dylib
       0x10527a000 -        0x10528efff +libxcb.1.dylib (3) <65314302-2C54-30DB-B383-F9988795490D> /Users/USER/minetest.app/Contents/libs/libxcb.1.dylib
       0x1052a1000 -        0x1052a2fff +libXau.6.dylib (7) <E73524F8-73B3-39D6-AE05-96968BF19DD7> /Users/USER/minetest.app/Contents/libs/libXau.6.dylib
       0x1052ac000 -        0x1052afff7 +libXdmcp.6.dylib (7) <3C8AF3CB-7971-3AE4-AB65-0B5FE3AD9744> /Users/USER/minetest.app/Contents/libs/libXdmcp.6.dylib
       0x1052ba000 -        0x1052bdfff +libsnappy.1.dylib (0) <88F6C5B8-D8F6-3F23-9889-9D3141D03487> /Users/USER/minetest.app/Contents/libs/libsnappy.1.dylib
    0x123400000000 -     0x123400435ff7  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (8.24.11 - 8.2.4) <8A2F184C-3855-3597-9EB5-49DB5A9B81F8> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver
    0x7fff63311000 -     0x7fff63344817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
    0x7fff80bb8000 -     0x7fff80bc9ff7  libz.1.dylib (53) <4C5FA1A5-4471-398E-9543-2E54D46E63E9> /usr/lib/libz.1.dylib
    0x7fff80ca1000 -     0x7fff80caafff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff80cab000 -     0x7fff80cadfff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff80cd6000 -     0x7fff80cfbff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B49408CD-ECE8-3785-84A4-45B03882574A> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff80cfc000 -     0x7fff80d00fff  libpam.2.dylib (20) <A63D4DA2-06A4-3FB8-AC3F-BDD69694EE5E> /usr/lib/libpam.2.dylib
    0x7fff80d01000 -     0x7fff80d1dfff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x7fff80d28000 -     0x7fff80d2aff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
    0x7fff80d2b000 -     0x7fff80d60ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff80d61000 -     0x7fff80e52ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x7fff80e76000 -     0x7fff80e76fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <CFEF9CBE-4A1A-33FD-9174-D44314BB28F3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff80e90000 -     0x7fff80ef4fff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff8104c000 -     0x7fff8104fff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
    0x7fff81050000 -     0x7fff81058ffc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff81059000 -     0x7fff8106bff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff8106c000 -     0x7fff81074ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <A816D8B1-6B7B-3E5B-9FAE-CBDA70192E7E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff81075000 -     0x7fff810fefff  com.apple.ColorSync (4.9.0 - 4.9.0) <E7E0D542-D77A-3E32-B146-4D0FEAF282D3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff810ff000 -     0x7fff81102ffa  libCGXType.A.dylib (599.20.11) <C0B41DDE-0988-3652-B03B-9E5EB0DABAEB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff811ae000 -     0x7fff811baff3  com.apple.AppleFSCompression (56 - 1.0) <1EBCFC91-734D-338B-8796-4B93BDC53014> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff81ab5000 -     0x7fff81abcfff  com.apple.NetFS (6.0 - 4.0) <D4FE0F16-3085-34AF-B860-3D46B98FAD2A> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff81abd000 -     0x7fff81acffff  com.apple.ImageCapture (9.0 - 9.0) <D9269440-8E56-3C03-88F5-F8AD662D17DB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff81af0000 -     0x7fff81b08ff7  com.apple.GenerationalStorage (2.0 - 160.2) <DC0236CC-A0F7-31DA-A201-09D4319BE96E> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff82120000 -     0x7fff82147ff7  libsystem_network.dylib (241.3) <A499D688-9165-3776-8C8E-C018897B5B13> /usr/lib/system/libsystem_network.dylib
    0x7fff82148000 -     0x7fff82149fff  libunc.dylib (28) <C3737C9A-C06F-310C-B78C-7D8D882A35DE> /usr/lib/system/libunc.dylib
    0x7fff82157000 -     0x7fff8215bfff  com.apple.IOAccelerator (98.14 - 98.14) <13EE735B-BD43-3E9B-9908-E423A17C4517> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff8215c000 -     0x7fff8253dffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff82553000 -     0x7fff8255dff7  com.apple.CrashReporterSupport (10.9 - 538) <E4DA588F-C75A-39F6-9D2B-7B79F0245D39> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff8255e000 -     0x7fff8268eff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff8268f000 -     0x7fff82690ff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff82691000 -     0x7fff826acff7  libPng.dylib (1042) <36FF1DDA-9804-33C5-802E-3FCA9879F0E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff826b7000 -     0x7fff8272efff  com.apple.CoreServices.OSServices (600.4 - 600.4) <80E7B419-A0D5-373B-B2B5-88E6A8CD3AE6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff8272f000 -     0x7fff8275efd2  libsystem_m.dylib (3047.16) <9D96AACD-5870-3A5C-B849-7F9C0F6EBB09> /usr/lib/system/libsystem_m.dylib
    0x7fff8275f000 -     0x7fff827adfff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff827de000 -     0x7fff827e6fff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff827e7000 -     0x7fff82983ff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff82988000 -     0x7fff829cffff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff82a33000 -     0x7fff83352af3  com.apple.CoreGraphics (1.600.0 - 599.20.11) <06212100-8069-31A1-9C44-F6C4B1695230> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff835ed000 -     0x7fff83640fff  com.apple.ScalableUserInterface (1.0 - 1) <19D73C6D-CA0A-3230-9644-7F01364137ED> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
    0x7fff83641000 -     0x7fff83644fff  com.apple.help (1.3.3 - 46) <6D71C959-D421-372B-A160-5317B4921F4D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff83698000 -     0x7fff83718fff  com.apple.CoreSymbolication (3.0 - 141) <37087FDB-874D-3FE2-9874-B047CC9BE910> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff83719000 -     0x7fff83972ff9  com.apple.security (7.0 - 55471.14) <3F7100A0-FE46-333D-9A4B-396580F1B4FE> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff839d2000 -     0x7fff83ac1fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff83ac2000 -     0x7fff83b1dffb  com.apple.AE (665.5 - 665.5) <3558CC9A-FD30-3DAD-AB40-FE6828E76FE1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff83b1e000 -     0x7fff83b1fff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff83b69000 -     0x7fff83db1ff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff83db2000 -     0x7fff83de1fff  com.apple.DebugSymbols (106 - 106) <9F66640E-277C-317E-A01E-A1E5B13E2592> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff83de2000 -     0x7fff83eabfff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff83ed7000 -     0x7fff83ed7fff  com.apple.ApplicationServices (48 - 48) <F250170A-8805-3731-9097-78CAD04481F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff83ed8000 -     0x7fff841d6fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff84293000 -     0x7fff84302ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff84381000 -     0x7fff84389ff3  libCGCMS.A.dylib (599.20.11) <BB1E8D63-9FA1-3588-AC5D-1980576ED62C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x7fff84462000 -     0x7fff84533ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff84534000 -     0x7fff84534ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8454b000 -     0x7fff84554ffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff84555000 -     0x7fff84620fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff84663000 -     0x7fff847d3ff8  com.apple.CFNetwork (673.2.1 - 673.2.1) <AE407146-CCF2-33DD-AAEA-6887FD6F45BA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff847d4000 -     0x7fff84860ff7  com.apple.ink.framework (10.9 - 207) <96A56EAC-B4AC-3C9A-8C40-64E6196753CC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff8486a000 -     0x7fff8486bfff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    0x7fff8486c000 -     0x7fff848b1ffe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff84ea0000 -     0x7fff84ea7ff7  libsystem_pthread.dylib (53.1.4) <9DA50FD0-D9AC-3051-AD4B-BA0D745BC49C> /usr/lib/system/libsystem_pthread.dylib
    0x7fff84eab000 -     0x7fff84f63ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <FCBB5558-A702-3658-AEE4-7D129AFBF350> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff84f64000 -     0x7fff84fceff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8501e000 -     0x7fff85065ff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
    0x7fff85066000 -     0x7fff85075ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2777524A-E7EF-3B7B-B15D-F58CDEEFC736> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff8508a000 -     0x7fff85095ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff85096000 -     0x7fff8515aff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff853b9000 -     0x7fff853f7ff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff854af000 -     0x7fff8561dff7  libBLAS.dylib (1094.5) <D862E2B7-91FA-3704-8F62-C1B65D381A84> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff856cd000 -     0x7fff85706ff7  com.apple.QD (3.50 - 298) <5343278D-47B7-3AF2-9B4B-4B8B0F942CD1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff85b22000 -     0x7fff85b30fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff85b74000 -     0x7fff85b7aff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
    0x7fff85b7b000 -     0x7fff85b88ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x7fff85da6000 -     0x7fff85db0ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9556885C-22DD-3392-ACCB-2B413434D8D3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff85db1000 -     0x7fff85ddaff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
    0x7fff85ddb000 -     0x7fff85dddffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
    0x7fff85dde000 -     0x7fff85deaff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff85e4e000 -     0x7fff85e72ff7  libJPEG.dylib (1042) <33648F26-A1DA-3C30-B15B-E9FFD41DB25C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff85e73000 -     0x7fff8611dff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff8611e000 -     0x7fff861a7ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
    0x7fff86219000 -     0x7fff864e9ffc  com.apple.CoreImage (9.2.7) <BF88A02E-994E-3970-AC62-04248CA8DC46> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff864ea000 -     0x7fff865d1ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x7fff865d2000 -     0x7fff865d3ff7  com.apple.print.framework.Print (9.0 - 260) <C4C40E2E-6130-3D73-B1EF-97FF3F70CF2C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff865d4000 -     0x7fff865d9ff7  libunwind.dylib (35.3) <95D4D118-3368-3474-989D-271DE18C8365> /usr/lib/system/libunwind.dylib
    0x7fff865da000 -     0x7fff86619fff  libGLU.dylib (9.6) <EE4907CA-219C-34BD-A84E-B85695F64C05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8662a000 -     0x7fff8662afff  com.apple.Cocoa (6.8 - 20) <1482E95B-0C26-38AF-9A44-50ADE6C0876C> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff868f8000 -     0x7fff868fbffc  com.apple.IOSurface (91 - 91) <812F4D48-6FD4-3DCB-8691-B077EBF981D7> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff868fc000 -     0x7fff86937fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff86956000 -     0x7fff86960fff  libcommonCrypto.dylib (60049) <79B8E80F-E596-3302-8243-EC479B9546CA> /usr/lib/system/libcommonCrypto.dylib
    0x7fff86963000 -     0x7fff869a8fff  libcurl.4.dylib (78.90.1) <818543D6-0CCE-3F18-9BF1-4D18B81018F3> /usr/lib/libcurl.4.dylib
    0x7fff869ae000 -     0x7fff86a8dfff  libcrypto.0.9.8.dylib (50) <09DCEDDF-2892-32B8-B689-CBE31A549F2B> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff86b3e000 -     0x7fff86b47ff3  libsystem_notify.dylib (121) <31F9FEF5-2897-328A-8441-B7BDFEDB10D4> /usr/lib/system/libsystem_notify.dylib
    0x7fff86b4a000 -     0x7fff86cb0fff  libGLProgrammability.dylib (9.6) <8807FAD2-11E2-3293-89D8-397B87334138> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fff86d22000 -     0x7fff86d29ff3  libcopyfile.dylib (103) <6453487A-EDA5-353C-8351-1AABB3C7777C> /usr/lib/system/libcopyfile.dylib
    0x7fff86d2a000 -     0x7fff86d5afff  com.apple.IconServices (25 - 25.17) <36811973-8777-3211-863A-76B2C20B0ED0> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff86d5b000 -     0x7fff86d68ff4  com.apple.Librarian (1.2 - 1) <2F677B44-BCA3-313B-881E-EE322E865100> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x7fff86d69000 -     0x7fff86d90ffb  libsystem_info.dylib (449.1.3) <395D8CD6-616A-3BD3-A195-C6D68EB9AB22> /usr/lib/system/libsystem_info.dylib
    0x7fff86d91000 -     0x7fff87065fc7  com.apple.vImage (7.0 - 7.0) <1DDB8AB7-03D5-3D20-9D77-C69074C6FD26> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff87066000 -     0x7fff87066fff  com.apple.CoreServices (59 - 59) <67A369BA-2326-383F-995B-853DAD7BFF43> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff87179000 -     0x7fff87190ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff8722e000 -     0x7fff87230ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff87231000 -     0x7fff8725afff  com.apple.DictionaryServices (1.2 - 208) <A4E4EA9E-08A1-3F77-8B57-A5A1ADD70B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff8725b000 -     0x7fff8726bfff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
    0x7fff874fe000 -     0x7fff8752afff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff88738000 -     0x7fff887c8fff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff887c9000 -     0x7fff887d3ff7  libcsfde.dylib (380) <48C0E3BA-ECE7-3337-918C-E65B4A5F0593> /usr/lib/libcsfde.dylib
    0x7fff887d4000 -     0x7fff887dbfff  libcompiler_rt.dylib (35) <2A890004-0A78-3E33-9AC5-A7D63BD4F879> /usr/lib/system/libcompiler_rt.dylib
    0x7fff8897b000 -     0x7fff88a65fff  libsqlite3.dylib (158) <447AA928-BCF7-3779-A7E5-210F264E0316> /usr/lib/libsqlite3.dylib
    0x7fff88ac5000 -     0x7fff88b75ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff88b76000 -     0x7fff88bdbff5  com.apple.Heimdal (4.0 - 2.0) <523EC6C4-BD9B-3840-9376-E617BA627F59> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff88bdc000 -     0x7fff88c04ffb  libRIP.A.dylib (599.20.11) <D79461A6-2E24-3531-ADA2-EAC972384A7D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff88c05000 -     0x7fff88c29fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
    0x7fff88c92000 -     0x7fff88c94fff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff88c95000 -     0x7fff88caeff7  com.apple.Ubiquity (1.3 - 289) <664F5B33-708D-33E9-81E1-C45CBE9AAB6E> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff88f54000 -     0x7fff88f57fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff88f58000 -     0x7fff890abff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff890b5000 -     0x7fff890b7fff  com.apple.EFILogin (2.0 - 2) <84014F35-7E0E-3270-819A-48ECCADA687E> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff890ec000 -     0x7fff890ecffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff890ed000 -     0x7fff89c63fff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff89cfb000 -     0x7fff89d4cff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <EAC1821B-CD20-30E3-BF95-C1839CA97BF7> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff89d4d000 -     0x7fff89edaff7  GLEngine (9.6) <51D58F76-B9B3-3B4F-B65A-F6D213C2EED7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
    0x7fff89edb000 -     0x7fff89ee0fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff89ef9000 -     0x7fff89f02ff7  libcldcpuengine.dylib (2.3.58) <C8785704-6195-3129-86CA-20F0F3C20F15> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x7fff89f82000 -     0x7fff89fa7ff7  com.apple.CoreVideo (1.8 - 117.2) <FE12553A-9B5A-337E-92BD-EA8A8194C91A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff89fa9000 -     0x7fff89fd1ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
    0x7fff89fd2000 -     0x7fff8a045fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff8a046000 -     0x7fff8a04aff7  libcache.dylib (62) <8C1EFC4F-3F51-3DE9-A973-360B461F3D65> /usr/lib/system/libcache.dylib
    0x7fff8a0b2000 -     0x7fff8a4e5ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <30FD8146-D6EB-3588-A7E5-ADC3110B3DCC> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff8a531000 -     0x7fff8a637ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff8a638000 -     0x7fff8a81dfff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8a83a000 -     0x7fff8a86bfff  com.apple.MediaKit (15 - 709) <4AC5B9D8-7204-3CF2-AB58-69EFCDD964FC> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff8a8c9000 -     0x7fff8a922fff  libTIFF.dylib (1042) <51D02EEC-0D0C-34C1-91C8-D316473A3FEA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8a953000 -     0x7fff8a987fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
    0x7fff8aef9000 -     0x7fff8af14ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x7fff8af15000 -     0x7fff8af15fff  com.apple.Carbon (154 - 157) <14069023-0BBB-3925-9BA9-EB2C9E9B8C75> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff8b2a5000 -     0x7fff8b2c1ff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8b2c2000 -     0x7fff8b2cffff  com.apple.Sharing (132.2 - 132.2) <3DFB1133-8FD3-3B60-8E9C-0FE62AACFD7B> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff8b71f000 -     0x7fff8b761ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
    0x7fff8b762000 -     0x7fff8b764ff7  libquarantine.dylib (71) <973BE51D-6465-392F-9099-D4AB21BF0D25> /usr/lib/system/libquarantine.dylib
    0x7fff8b801000 -     0x7fff8b81bfff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
    0x7fff8c23a000 -     0x7fff8c241ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
    0x7fff8c242000 -     0x7fff8c246ff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
    0x7fff8c5a8000 -     0x7fff8c600ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff8c601000 -     0x7fff8c601fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff8c602000 -     0x7fff8c643fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff8c644000 -     0x7fff8c673ff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8c6b5000 -     0x7fff8c6b6ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
    0x7fff8ce07000 -     0x7fff8ce1fff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff8cf0f000 -     0x7fff8cf38fff  GLRendererFloat (9.6) <16871296-2EB9-3FF6-AB00-3E2E55A45A63> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
    0x7fff8cf76000 -     0x7fff8d05afff  com.apple.coreui (2.1 - 231) <A7942BEE-E6BA-3A68-8EA0-57A8A9066B2D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8d065000 -     0x7fff8d0b7fff  libc++.1.dylib (120) <2CB96D10-1E3E-39B1-B90D-C56C3818321E> /usr/lib/libc++.1.dylib
    0x7fff8d124000 -     0x7fff8d12ffff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8d218000 -     0x7fff8d2a3fff  libCoreStorage.dylib (380) <D431A980-5CEF-32DA-8955-EC34B3DA64D9> /usr/lib/libCoreStorage.dylib
    0x7fff8d2a7000 -     0x7fff8d45fff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
    0x7fff8d460000 -     0x7fff8d460ff7  libkeymgr.dylib (28) <D7045F25-BFA4-3840-847D-AF95DF8B6CCA> /usr/lib/system/libkeymgr.dylib
    0x7fff8d461000 -     0x7fff8d523ff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff8d524000 -     0x7fff8d528ff7  libheimdal-asn1.dylib (323.15) <B8BF2B7D-E913-3544-AA6D-CAC119F81C7C> /usr/lib/libheimdal-asn1.dylib
    0x7fff8d529000 -     0x7fff8d52ffff  com.apple.AOSNotification (1.7.0 - 760.3) <307D35A7-C2CB-3024-BFE1-288A0198C003> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
    0x7fff8d564000 -     0x7fff8d569fff  libmacho.dylib (845) <B2BE3C25-CF1F-309B-AB99-1F0B54621445> /usr/lib/system/libmacho.dylib
    0x7fff8d587000 -     0x7fff8d588fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff8d589000 -     0x7fff8d58dff7  libGIF.dylib (1042) <C57840F6-1C11-3273-B4FC-956950B94034> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff8d58e000 -     0x7fff8d58fff7  libSystem.B.dylib (1197.1.1) <A75BB8CD-CE51-3DF7-BCF4-8BDE25FA7F0C> /usr/lib/libSystem.B.dylib
    0x7fff8d590000 -     0x7fff8d5defff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
    0x7fff8d5df000 -     0x7fff8d5e0ffb  libremovefile.dylib (33) <26266E3F-FDDC-3CFC-B27F-78B49BDC9BDC> /usr/lib/system/libremovefile.dylib
    0x7fff8d95b000 -     0x7fff8d95ffff  com.apple.CommonPanels (1.2.6 - 96) <5744A1F1-1FA5-35DD-B924-F8983E81FC76> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff8da28000 -     0x7fff8da2bfff  com.apple.TCC (1.0 - 1) <F25B5875-081A-3877-B70E-374D54B54C5F> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff8da2c000 -     0x7fff8da37fff  libGPUSupportMercury.dylib (9.6) <3E5636DB-5EED-3C31-8B6D-8CBFE965BC12> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
    0x7fff8da38000 -     0x7fff8da48ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
    0x7fff8dab4000 -     0x7fff8dacdff7  com.apple.Kerberos (3.0 - 1) <59427E11-37D6-34C9-95BB-D4438BFACA5B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8dace000 -     0x7fff8db06ff7  com.apple.RemoteViewServices (2.0 - 94) <B17FAA76-61DB-33D0-90B7-4117A72A2B28> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff8db07000 -     0x7fff8dbf5fff  libJP2.dylib (1042) <01D988D4-E36F-3120-8BA4-EF6282ECB010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8dbf6000 -     0x7fff8dc43ff2  com.apple.print.framework.PrintCore (9.0 - 428) <A2F7B9D2-7907-31D8-8462-E2E2E7C3AF2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff8dfcd000 -     0x7fff8e030ff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff8e031000 -     0x7fff8e03eff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    0x7fff8e03f000 -     0x7fff8e05aff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
    0x7fff8e05b000 -     0x7fff8e208f27  libobjc.A.dylib (551.1) <F21C5742-7B9C-31F1-BBAE-1717BC6C2F1B> /usr/lib/libobjc.A.dylib
    0x7fff8e410000 -     0x7fff8e41bfff  libkxld.dylib (2422.90.20) <EF476345-7A69-3AC0-95ED-0196FB8910CB> /usr/lib/system/libkxld.dylib
    0x7fff8e436000 -     0x7fff8e720fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff8e721000 -     0x7fff8e732ff7  libsystem_asl.dylib (217.1.4) <B983CA60-F418-317B-B142-48A6376564FC> /usr/lib/system/libsystem_asl.dylib
    0x7fff8e733000 -     0x7fff8e7a0fff  com.apple.SearchKit (1.4.0 - 1.4.0) <33298263-5B12-340D-BB9D-D52303849561> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 1
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 213497
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=179.4M resident=55.7M(31%) swapped_out_or_unallocated=123.8M(69%)
Writable regions: Total=132.4M written=9424K(7%) resident=28.8M(22%) swapped_out=160K(0%) unallocated=103.6M(78%)
 
REGION TYPE                      VIRTUAL
===========                      =======
CG backing stores                  8228K
CG image                              4K
CG raster data                       48K
CG shared images                    212K
Dispatch continuations             8192K
IOKit                              13.5M
Kernel Alloc Once                     8K
MALLOC                             76.2M
MALLOC (admin)                       32K
Memory Tag 242                       12K
Memory Tag 249                      156K
STACK GUARD                        56.0M
Stack                              12.1M
VM_ALLOCATE                        18.1M
VM_ALLOCATE (reserved)              148K        reserved VM address space (unallocated)
__DATA                             20.7M
__IMAGE                             528K
__LINKEDIT                         69.6M
__TEXT                            109.8M
__UNICODE                           544K
mapped file                        59.5M
shared memory                       388K
===========                      =======
TOTAL                             453.5M
TOTAL, minus reserved VM space    453.4M
 

Model: MacBookPro11,1, BootROM MBP111.0138.B03, 2 processors, Intel Core i5, 2.4 GHz, 8 GB, SMC 2.16f58
Graphics: Intel Iris, Intel Iris, Built-In, 1024 MB
Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x802C, 0x384B54463531323634485A2D314736453120
Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x802C, 0x384B54463531323634485A2D314736453120
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x112), Broadcom BCM43xx 1.0 (6.30.223.154.63)
Bluetooth: Version 4.2.3f10 13477, 3 services, 23 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
Serial ATA Device: APPLE SSD SD0256F, 251 GB
USB Device: Internal Memory Card Reader
USB Device: USB 2.0 Hub
USB Device: External
USB Device: USB to Serial-ATA bridge
USB Device: Portable USB 3.0 Drive
USB Device: Apple Internal Keyboard / Trackpad
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 17.2
 

OmniStudent
Member
 
Posts: 261
Joined: Sat Nov 03, 2012 06:40

Re: Morn76's Minetest OS X Mavericks builds

by OmniStudent » Sun May 04, 2014 07:24

When trying to access the online mods after starting from command line, I got
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
Computers-MacBook-Pro:MacOS me$ ./minetest
Bundle resource path: /Users/me/minetest.app/Contents/Resources/bin
Irrlicht Engine version 1.8.1
Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
Using renderer: OpenGL 2.1
Intel Iris OpenGL Engine: Intel Inc.
OpenGL driver version is 1.2 or better.
GLSL version: 1.2
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:03: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:03: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:04: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:04: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:04: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:04: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:04: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:04: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:04: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:04: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:04: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:04: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:04: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:04: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:04: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:04: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:04: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:04: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:04: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:04: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:04: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:04: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:04: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:04: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:04: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:04: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:04: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:04: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Could not open file of texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
09:13:04: ERROR[main]: GUIFormSpecMenu::drawMenu() Draw images unable to load texture:
09:13:04: ERROR[main]:    /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Segmentation fault: 11


So I moved the textures file to /Users/me/Library/Application Support/minetest/

After this I got
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
Computers-MacBook-Pro:MacOS me$ ./minetest
Bundle resource path: /Users/me/minetest.app/Contents/Resources/bin
Irrlicht Engine version 1.8.1
Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
Using renderer: OpenGL 2.1
Intel Iris OpenGL Engine: Intel Inc.
OpenGL driver version is 1.2 or better.
GLSL version: 1.2
Loaded texture: /Users/me/Library/Application Support/minetest/textures/base/pack/menu_header.png
Loaded texture: /Users/me/Library/Application Support/minetest/textures/base/pack/menu_header.png
Loaded texture: /Users/me/Library/Application Support/minetest/textures/base/pack/menu_header.png
Loaded texture: /Users/me/Library/Application Support/minetest/textures/base/pack/no_screenshot.png
Segmentation fault: 11
 

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

Re: Morn76's Minetest OS X Mavericks builds

by Morn76 » Sun May 04, 2014 08:53

So basically it looks like the built-in Lua code that handles the modstore ignores "share/" in the bundle directory and directly heads to "Application Support/minetest" instead. :-(

I'll look into this. Thanks for reporting!
 

OmniStudent
Member
 
Posts: 261
Joined: Sat Nov 03, 2012 06:40

Re: Morn76's Minetest OS X Mavericks builds

by OmniStudent » Sun May 04, 2014 09:34

Is the Lua problem and the crash related? Even when it finds the correct files it crashes.
 

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

Re: Morn76's Minetest OS X Mavericks builds

by Morn76 » Sun May 04, 2014 10:15

Alright, so changing the texture path in modstore.lua to something hardcoded was easy. But as you observed, then there is still a crash somewhere in libluajit:

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
Crashed Thread:  6  AsyncWorkTh_0

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x000000050a6f5580
(…)
Thread 6 Crashed:: AsyncWorkTh_0
0   libluajit-5.1.2.dylib            0x0000000104f78b80 0x104f42000 + 224128
1   libluajit-5.1.2.dylib            0x0000000104f59109 0x104f42000 + 94473
2   libluajit-5.1.2.dylib            0x0000000104fb2f50 0x104f42000 + 462672
3   libluajit-5.1.2.dylib            0x0000000104f4770e 0x104f42000 + 22286
4   libluajit-5.1.2.dylib            0x0000000104f47518 0x104f42000 + 21784
5   libluajit-5.1.2.dylib            0x0000000104f4bcdd 0x104f42000 + 40157
6   libluajit-5.1.2.dylib            0x0000000104f443f5 0x104f42000 + 9205
7   libluajit-5.1.2.dylib            0x0000000104f54604 lua_pcall + 100
8   minetest                         0x00000001044eaac2 AsyncWorkerThread::Thread() + 708
9   minetest                         0x00000001044e24d2 JThread::TheThread(void*) + 52
10  libsystem_pthread.dylib          0x00007fff8cc09899 _pthread_body + 138
11  libsystem_pthread.dylib          0x00007fff8cc0972a _pthread_start + 137
12  libsystem_pthread.dylib          0x00007fff8cc0dfc9 thread_start + 13


I've compiled with the included Lua and get

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
Crashed Thread:  7  AsyncWorkTh_1

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000

Application Specific Information:
abort() called
terminating with uncaught exception of type LuaError: error in error handling
(…)
Thread 7 Crashed:: AsyncWorkTh_1
0   libsystem_kernel.dylib           0x00007fff8c153866 __pthread_kill + 10
1   libsystem_pthread.dylib          0x00007fff8cc0a35c pthread_kill + 92
2   libsystem_c.dylib                0x00007fff8d664b1a abort + 125
3   libc++abi.dylib                  0x00007fff8ea89f31 abort_message + 257
4   libc++abi.dylib                  0x00007fff8eaaf93a default_terminate_handler() + 240
5   libobjc.A.dylib                  0x00007fff87e6f322 _objc_terminate() + 124
6   libc++abi.dylib                  0x00007fff8eaad1d1 std::__terminate(void (*)()) + 8
7   libc++abi.dylib                  0x00007fff8eaacc5b __cxa_throw + 124
8   minetest                         0x000000010bc71fbd ScriptApiBase::scriptError() + 117
9   minetest                         0x000000010bc6fd0e AsyncWorkerThread::Thread() + 800
10  minetest                         0x000000010bc67552 JThread::TheThread(void*) + 52
11  libsystem_pthread.dylib          0x00007fff8cc09899 _pthread_body + 138
12  libsystem_pthread.dylib          0x00007fff8cc0972a _pthread_start + 137
13  libsystem_pthread.dylib          0x00007fff8cc0dfc9 thread_start + 13


Not very helpful at all. Obviously something bad happens in Lua, but I don't know how to debug this.
 

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

Re: Morn76's Minetest OS X Mavericks builds

by Morn76 » Sun May 04, 2014 10:27

Didn't the original commit message for the jsemaphore stuff mention something about making the modstore asynchronous? Wasn't that the whole point of jsemaphore in the first place? So maybe it is semaphores striking again and causing problems in Lua.

Image

LOL, couldn't resist. :-)
 

OmniStudent
Member
 
Posts: 261
Joined: Sat Nov 03, 2012 06:40

Re: Morn76's Minetest OS X Mavericks builds

by OmniStudent » Sun May 04, 2014 10:35

:D
 

OmniStudent
Member
 
Posts: 261
Joined: Sat Nov 03, 2012 06:40

Re: Morn76's Minetest OS X Mavericks builds

by OmniStudent » Sun May 04, 2014 14:02

Its possible that this is not a jsemaphore problem but that the os.tempfolder variable is set wrong. Its only used in mainmenu, modmgr and modstore.lua.
 

OmniStudent
Member
 
Posts: 261
Joined: Sat Nov 03, 2012 06:40

Re: Morn76's Minetest OS X Mavericks builds

by OmniStudent » Sun May 04, 2014 14:37

Tried to write a lua script to look at variables, only to find there is no mods directory to put it in :( I'll try to figure out where it goes.
 

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

Re: Morn76's Minetest OS X Mavericks builds

by Morn76 » Sun May 04, 2014 14:40

I think tempfolder only comes into play when you actually download and install a mod. But these crashes happen while the modstore is still loading preview images.
 

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

Re: Morn76's Minetest OS X Mavericks builds

by Morn76 » Sun May 04, 2014 16:14

Actually, you may be right, because modstore.getscreenshot() uses temp files too!

So the temp screenshot file names handed to async jobs look like:

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
/var/tmp/MTTempModFolder_5721_MID_68
/var/tmp/MTTempModFolder_9039_MID_44
/var/tmp/MTTempModFolder_4759_MID_80
/var/tmp/MTTempModFolder_1356_MID_79


But when I look in /var/tmp while minetest is running, I never see any temp folders being created. Somehow these async jobs must be running into problems even before they have an opportunity to create empty files or folders.
 

OmniStudent
Member
 
Posts: 261
Joined: Sat Nov 03, 2012 06:40

Re: Morn76's Minetest OS X Mavericks builds

by OmniStudent » Mon May 05, 2014 07:10

Not directly related, but it seems mods are not loaded. They register in the "mods" tab if I put them in Library/Application Support/minetest/mods, but in-game they don't react to commands and are not listed when typing /mods in chat.

P.S. But obviously some mods work since all the basic stuff is loaded.
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

Re: Morn76's Minetest OS X Mavericks builds

by Jordach » Mon May 05, 2014 14:58

OmniStudent wrote:Not directly related, but it seems mods are not loaded. They register in the "mods" tab if I put them in Library/Application Support/minetest/mods, but in-game they don't react to commands and are not listed when typing /mods in chat.

P.S. But obviously some mods work since all the basic stuff is loaded.

Have you tried configuring a world to enable mods?

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

OmniStudent
Member
 
Posts: 261
Joined: Sat Nov 03, 2012 06:40

Re: Morn76's Minetest OS X Mavericks builds

by OmniStudent » Mon May 05, 2014 18:39

Jordach wrote:Have you tried configuring a world to enable mods?


No, I didn't know that was neccessary. How do you do that?
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

Re: Morn76's Minetest OS X Mavericks builds

by sfan5 » Mon May 05, 2014 18:58

OmniStudent wrote:
Jordach wrote:Have you tried configuring a world to enable mods?


No, I didn't know that was neccessary. How do you do that?

Select the world and click on the 'Configure' button, then enable the mods.
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

OmniStudent
Member
 
Posts: 261
Joined: Sat Nov 03, 2012 06:40

Re: Morn76's Minetest OS X Mavericks builds

by OmniStudent » Mon May 05, 2014 19:20

sfan5 wrote:Select the world and click on the 'Configure' button, then enable the mods.


Thankyou! That got it working. My tutorial:decowood still can't find the texture image, but that may be my own fault.
 

Next

Return to Minetest Builds

Who is online

Users browsing this forum: No registered users and 1 guest

cron