PySide Bugzilla Closed for New Bugs

PySide is now a Qt Add-on and uses the Qt Project's JIRA Bug Tracker instead of this Bugzilla instance. This Bugzilla is left for reference purposes.

Bug 57 - --reduce-memory-overheads is not valid on OSX
: --reduce-memory-overheads is not valid on OSX
Status: CLOSED FIXED
Product: PySide
Classification: Unclassified
Component: PySide
: HEAD
: Macintosh Mac OS
: P5 normal
Assigned To: renato filho
:
:
:
  Show dependency treegraph
 
Reported: 2009-09-10 17:50 EEST by Brendan Duncan
Modified: 2009-10-14 14:18 EEST (History)
6 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Brendan Duncan 2009-09-10 17:50:26 EEST
PySide/QtGui/CMakeLists.txt

Replace:
set_target_properties(QtGui PROPERTIES PREFIX "" LINK_FLAGS
"-Wl,--reduce-memory-overheads")

With:
IF(UNIX)
    IF(APPLE)
        set_target_properties(QtGui PROPERTIES PREFIX "")
    ELSE(APPLE)
        set_target_properties(QtGui PROPERTIES PREFIX "" LINK_FLAGS
"-Wl,--reduce-memory-overheads")
    ENDIF(APPLE)
ELSE(UNIX)
    set_target_properties(QtGui PROPERTIES PREFIX "")
ENDIF(UNIX)
Comment 1 renato filho 2009-09-21 11:05:47 EEST
Removed form MAC OS flags.

Fixed on commit: 39df98619bd51dde04237ff6bd0a3fc9402dd396