-
Notifications
You must be signed in to change notification settings - Fork 23
/
LogFile
31 lines (21 loc) · 1.1 KB
/
LogFile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
28/05/13
Support for MAC OS X 10.8 (Mountain Lion)
- CMake compiler must be set to GNU G++ rather than the Xcode default LLVM-G++
"cmake .. -DCMAKE_CXX_COMPILER=/usr/bin/g++"
- For Xcode 4.6
Patch: http://www.mathworks.com.au/support/solutions/en/data/1-FR6LXJ/
Download corresponding "optsPatch_MACOSX(x).patch" and follow the instructions
- Change the line "MACOSX_DEPLOYMENT_TARGET = 10.5" to "10.6" in "/Applications/MATLAB2011b.app/bin/mexopts.sh".
30/05/13
Linux:
Very first Commit:
- Its example can properly execute on a small-size image with precompiled packages.
- RAM issue will occur, when it is running on a large-size image.
- Some compiling errors occurred, when I tried to build packages with "build.sh".
MAC OS X:
Least Commit
- link "/Applications/MATLAB2011b.app/bin/matlab" to "/usr/bin/matlab" by
ln -s /Applications/MATLAB2011b.app/bin/matlab /usr/bin/
- export DYLD_LIBRARY_PATH=$<path to gPb>/grouping/lib:/usr/lib
- Run MATLAB using terminal command, otherwise MATLAB will lose the path of dylib library
- Then, examples will run correctly on both small-size and large-size images.