Déploiement application Qt sur Mac OS X
Salut tout le monde, j'ai porté mon application Qt depuis vers Mac OS X 10.4.6 Tiger PowerPC G4. Après correction des bugs tout fonctionne correctement. J'ai voulu déployer mon application en suivant les instructions dans le document de trolltech depuis http://qt.developpez.com/doc/latest/deployment-mac.html, mais lorsque je teste le bundle sur un MAC OS 10.4.10 Tiger, l'application ne démarre même pas. Voici les instructions que j'ai exécuté :
Citation:
-------------------------------------------------------------
cd /Users/idriss/Projets/Deploy_Autonome/autonome/build/Release
**************************************************************************************************
cd /Projets/Deploy_Autonome/autonome/buid/Release/Autonome.app/Contents
mkdir Frameworks
cp -R /Volumes/Dev/Library/Frameworks/QtCore.framework Frameworks
cp -R /Volumes/Dev/Library/Frameworks/QtGui.framework Frameworks
cp -R /Volumes/Dev/Library/Frameworks/QtSql.framework Frameworks
cp -R /Volumes/Dev/Library/Frameworks/Qt3Support.framework Frameworks
cp -R /Volumes/Dev/Library/Frameworks/QtXml.framework Frameworks
cp -R /Volumes/Dev/Library/Frameworks/QtNetwork.framework Frameworks
**************************************************************************************************
install_name_tool -id @executable_path/../Frameworks/QtCore.framework/Versions/4.0/QtCore Autonome.app/Contents/Frameworks/QtCore.framework/Versions/4.0/QtCore
install_name_tool -id @executable_path/../Frameworks/QtGui.framework/Versions/4.0/QtGui Autonome.app/Contents/Frameworks/QtGui.framework/Versions/4.0/QtGui
install_name_tool -id @executable_path/../Frameworks/QtSql.framework/Versions/4.0/QtSql Autonome.app/Contents/Frameworks/QtSql.framework/Versions/4.0/QtSql
install_name_tool -id @executable_path/../Frameworks/Qt3Support.framework/Versions/4.0/Qt3Support Autonome.app/Contents/Frameworks/Qt3Support.framework/Versions/4.0/Qt3Support
install_name_tool -id @executable_path/../Frameworks/QtXml.framework/Versions/4.0/QtXml Autonome.app/Contents/Frameworks/QtXml.framework/Versions/4.0/QtXml
install_name_tool -id @executable_path/../Frameworks/QtNetwork.framework/Versions/4.0/QtNetwork Autonome.app/Contents/Frameworks/QtNetwork.framework/Versions/4.0/QtNetwork
**************************************************************************************************
install_name_tool -change /Volumes/Dev/Library/Frameworks/QtCore.framework/Versions/4.0/QtCore @executable_path/../Frameworks/QtCore.framework/Versions/4.0/QtCore Autonome.app/Contents/MacOs/Autonome
install_name_tool -change /Volumes/Dev/Library/Frameworks/QtGui.framework/Versions/4.0/QtGui @executable_path/../Frameworks/QtGui.framework/Versions/4.0/QtGui Autonome.app/Contents/MacOs/Autonome
install_name_tool -change /Volumes/Dev/Library/Frameworks/QtSql.framework/Versions/4.0/QtSql @executable_path/../Frameworks/QtSql.framework/Versions/4.0/QtSql Autonome.app/Contents/MacOs/Autonome
install_name_tool -change /Volumes/Dev/Library/Frameworks/Qt3Support.framework/Versions/4.0/Qt3Support @executable_path/../Frameworks/Qt3Support.framework/Versions/4.0/Qt3Support Autonome.app/Contents/MacOs/Autonome
install_name_tool -change /Volumes/Dev/Library/Frameworks/QtXml.framework/Versions/4.0/QtXml @executable_path/../Frameworks/QtXml.framework/Versions/4.0/QtXml Autonome.app/Contents/MacOs/Autonome
install_name_tool -change /Volumes/Dev/Library/Frameworks/QtNetwork.framework/Versions/4.0/QtNetwork @executable_path/../Frameworks/QtNetwork.framework/Versions/4.0/QtNetwork Autonome.app/Contents/MacOs/Autonome
**************************************************************************************************
install_name_tool -change /Volumes/Dev/Library/Frameworks/QtCore.framework/Versions/4.0/QtCore @executable_path/../Frameworks/QtCore.framework/Versions/4.0/QtCore Autonome.app/Contents/Frameworks/QtGui.framework/Versions/4.0/QtGui
install_name_tool -change /Volumes/Dev/Library/Frameworks/QtCore.framework/Versions/4.0/QtCore @executable_path/../Frameworks/QtCore.framework/Versions/4.0/QtCore Autonome.app/Contents/Frameworks/QtSql.framework/Versions/4.0/QtSql
install_name_tool -change /Volumes/Dev/Library/Frameworks/QtCore.framework/Versions/4.0/QtCore @executable_path/../Frameworks/QtCore.framework/Versions/4.0/QtCore Autonome.app/Contents/Frameworks/Qt3Support.framework/Versions/4.0/Qt3Support
install_name_tool -change /Volumes/Dev/Library/Frameworks/QtCore.framework/Versions/4.0/QtCore @executable_path/../Frameworks/QtCore.framework/Versions/4.0/QtCore Autonome.app/Contents/Frameworks/QtXml.framework/Versions/4.0/QtXml
install_name_tool -change /Volumes/Dev/Library/Frameworks/QtCore.framework/Versions/4.0/QtCore @executable_path/../Frameworks/QtCore.framework/Versions/4.0/QtCore Autonome.app/Contents/Frameworks/QtNetwork.framework/Versions/4.0/QtNetwork
************************ PLUGINS ************************************************
mkdir Autonome.app/Contents/plugins
cp /Volumes/Dev/Developer/Applications/Qt/plugins/sqldrivers/libqsqlibase.dylib Autonome.app/Contents/plugins
install_name_tool -change /Volumes/Dev/Library/Frameworks/QtCore.framework/Versions/4.0/QtCore @executable_path/../Frameworks/QtCore.framework/Versions/4.0/QtCore Autonome.app/Contents/plugins/libqsqlibase.dylib
install_name_tool -change /Volumes/Dev/Library/Frameworks/QtGui.framework/Versions/4.0/QtGui @executable_path/../Frameworks/QtGui.framework/Versions/4.0/QtGui Autonome.app/Contents/plugins/libqsqlibase.dylib
install_name_tool -change /Volumes/Dev/Library/Frameworks/Qt3Support.framework/Versions/4.0/Qt3Support @executable_path/../Frameworks/QtSql.framework/Versions/4.0/QtSql Autonome.app/Contents/plugins/libqsqlibase.dylib
install_name_tool -change /Volumes/Dev/Library/Frameworks/QtSql.framework/Versions/4.0/QtSql @executable_path/../Frameworks/Qt3Support.framework/Versions/4.0/Qt3Support Autonome.app/Contents/plugins/libqsqlibase.dylib
install_name_tool -change /Volumes/Dev/Library/Frameworks/QtXml.framework/Versions/4.0/QtXml @executable_path/../Frameworks/QtXml.framework/Versions/4.0/QtXml Autonome.app/Contents/plugins/libqsqlibase.dylib
install_name_tool -change /Volumes/Dev/Library/Frameworks/QtNetwork.framework/Versions/4.0/QtNetwork @executable_path/../Frameworks/QtNetwork.framework/Versions/4.0/QtNetwork Autonome.app/Contents/plugins/libqsqlibase.dylib
Est ce il y quelqu'un qui a une idée sur ce problème ? Y a t il quelqu'un qui a une solution pour ça.
Je vous remercie d'avance.