Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8720521
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T07:03:43+00:00 2026-06-13T07:03:43+00:00

I need to build my plugin/library as a .so on Mac. That happens without

  • 0

I need to build my plugin/library as a .so on Mac. That happens without extra trick on Linux and works like a charm.

What extra options I need to add to my .pro file?

CONFIG += debug
QT += xml
TEMPLATE = lib
TARGET = mylib
DEPENDPATH += .
macx:INCLUDEPATH += ../../../Test \
  /usr/local/include/

macx:LIBS += -L../../../Test/lib

DEFINES += CORE_EXPORT=
DEFINES += GUI_EXPORT=

HEADERS += test.h testGui.h
FORMS += testGui.ui
SOURCES += test.cpp testGui.cpp
RESOURCES += test.qrc
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T07:03:45+00:00Added an answer on June 13, 2026 at 7:03 am

    The “.so” suffix doesn’t mean anything on OS X. On an ELF platform like Linux, an “*.so” file is a shared library. On OS X, shared libraries have the “.dylib” extension. On Linux, plugins are implemented as shared libraries (*.so) because you can unload them again when you’re done with them. On OS X, shared libraries cannot be unloaded. That makes them unsuitable for plugins.

    On OS X, you use bundles instead of shared libraries in order to implement plugins. Last time I looked, qmake doesn’t support this directly. But you can modify the linker flags in order to build a bundle. By default, qmake uses the “-dynamiclib” linker flag, which builds a *.dylib. Instead, you should use the “-bundle” flag, which builds bundles. You can try this:

    CONFIG += plugin
    QMAKE_LFLAGS_PLUGIN -= -dynamiclib
    QMAKE_LFLAGS_PLUGIN += -bundle
    

    The file extension of a bundle is not standardized. You can use whatever you want (.so, .dylib, .plugin, .donald_duck, …) Apple recommends “.bundle”, but doesn’t enforce it. To control the filename of the created bundle, you can set QMAKE_EXTENSION_SHLIB and QMAKE_PREFIX_SHLIB. For example, to get mylib.bundle, set:

    QMAKE_EXTENSION_SHLIB = bundle
    QMAKE_PREFIX_SHLIB =
    

    If instead you want to get libmylib.so, only set:

    QMAKE_PREFIX_SHLIB = so
    

    As the names suggest, QMAKE_EXTENSION_SHLIB contains the file extension (without the .), and QMAKE_PREFIX_SHLIB contains the file prefix (by default it’s lib).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to manually build a Qt plugin . No problem on Linux and
I'm starting research on what I'd need in order to build a user-level plugin
I need to build a feature like most of the banks use. Where.. if
I need to build a configuration panel in the Plone control panel that store
Here is the summary: I need to build a simple java web app that,
I need to put a plugin (specifically a QuickLook plugin) in /Contents/Library/QuickLook in my
I need to build an internal service that queues the DB for changes (in
This I'm trying for transfer my current Apache/Modperl site to Starman, and need build
I need to build app with user messages (dialogs). I've solved this problem by
I need to build a push system in django, basicly its function is to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.