Michael
Michael

Reputation: 115

Cross compiling Qt 5

When cross compiling Qt 5.1 (arm-linux-gnueabihf-4.7), what executables are not cross compiled (qmake, moc, bootstrap, etc.)?

After reviewing and running the Qt 5 build process, moc and boostrap are getting cross-compiled, which I think is causing a build error...

Upvotes: 3

Views: 1533

Answers (1)

László Papp
László Papp

Reputation: 53173

When cross compiling Qt 5.1 (arm-linux-gnueabihf-4.7), what executables are not cross compiled (qmake, moc, bootstrap, etc.)?

The "host" tools, basically:

  • qmake (qbs in the future)
  • moc
  • uic
  • qdoc
  • rcc

Upvotes: 5

Related Questions