Changes between Version 75 and Version 76 of Mac OS X build instructions
- Timestamp:
- Sep 8, 2011 12:43:42 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Mac OS X build instructions
v75 v76 125 125 otool -L /Applications/VirtualBox.app/Contents/MacOS/VirtualBox.dylib 126 126 }}} 127 Next, assuming Qt is installed in /Applications/VirtualBox.app/Contents/Frameworks/, you can change the path by using this:127 Next, assuming Qt is installed in `/Applications/VirtualBox.app/Contents/Frameworks/`, you can change the path by using this: 128 128 {{{ 129 129 install_name_tool -id /Applications/VirtualBox.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui \ … … 133 133 /Applications/VirtualBox.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui 134 134 }}} 135 The first command changes the identifier of the library itself. The second changes references to other libraries. There, the first path is the old referenced path, the second one is the new path and the last path is the file to change (see man install_name_tool). Note, you need to repeat this with every library involved (at least !VirtualBox.dylib, !QtCore, !QtGui, !QtNetwork, !QtOpenGl).135 The first command changes the identifier of the library itself. The second changes references to other libraries. There, the first path is the old referenced path, the second one is the new path and the last path is the file to change (see `man install_name_tool`). Note, you need to repeat this with every library involved (at least `VirtualBox.dylib`, `QtCore`, `QtGui`, `QtNetwork`, `QtOpenGl`).