wxwidgets/build/osx
Antti Nietosvaara d666d1e222 Fix a memory leak when using non-wx threads
The wxThreadSpecificInfo object created by wxThreadSpecificInfo::Get()
was only released by the wxThreadInternal's cleanup, which meant that it
was leaked if wxThreadSpecificInfo::Get() was called by a thread not
created by wxThread, e.g. when using std::async or std::thread.

Fix this by simply using C++11 thread_local and removing the entire
wxThreadSpecificInfo machinery entirely.

See #23535.

Closes #23543.
2023-05-16 00:36:00 +02:00
..
wxcocoa.xcodeproj Fix a memory leak when using non-wx threads 2023-05-16 00:36:00 +02:00
wxcocoa_in.xcodeproj Add Lexilla to pbx template and makeprojects.py 2023-02-14 22:52:27 +01:00
wxiphone.xcodeproj Fix a memory leak when using non-wx threads 2023-05-16 00:36:00 +02:00
wxiphone_in.xcodeproj adding workspace template files 2021-11-22 18:01:32 +01:00
fix_xcode_ids.py switching to python3 for creating Xcode project files from bakefile 2021-11-22 08:15:16 +01:00
makeprojects.py Add Lexilla to pbx template and makeprojects.py 2023-02-14 22:52:27 +01:00
readme.txt Removing outdated AppleScript, updating docs 2022-04-16 14:48:58 +02:00
wx.xcconfig Add Lexilla to pbx template and makeprojects.py 2023-02-14 22:52:27 +01:00
wxcocoa.xcconfig Fix wxOSX build with Xcode 10 and later 2021-08-23 00:51:19 +02:00
wxcocoa_ml.xcconfig new separate config file for base 2014-08-11 15:50:11 +00:00
wxcocoa_ml3rd.xcconfig naming closer to Makefile 2014-08-11 15:51:14 +00:00
wxcocoa_mlbase.xcconfig naming closer to Makefile 2014-08-11 15:51:14 +00:00
wxcocoa_mlgui.xcconfig naming closer to Makefile 2014-08-11 15:51:14 +00:00
wxdebug.xcconfig Use the same wxDEBUG_LEVEL settings for Xcode projects as elsewhere. 2013-04-03 18:13:30 +00:00
wxiphone.xcconfig moving archs to xcconfig 2021-01-01 21:10:05 +01:00
wxrelease.xcconfig Use the same wxDEBUG_LEVEL settings for Xcode projects as elsewhere. 2013-04-03 18:13:30 +00:00
wxvers.xcconfig Update library version to 3.3 2022-07-16 17:02:56 +02:00

Updating Library Version Info
-----------------------------

for a new release the wxvers.xcconfig has to be updated accordingly

Building Projects
-----------------

makeprojects.py is a Python 3 script that builds upon pbxproj. It replaces the old
AppleScript that did not work with the current Xcode versions anymore.

The reason for this script is to support a single place of definition for the files needed
for a certain platform by building Xcode projects from the bakefiles files.bkl file list.

It creates new projects from the ..._in.xcodeproj templates in this folder and then
reads in the files lists from the files.bkl in the build/bakefiles directory, evaluates the
conditions in these definitions and then adds the correct files to the newly created Xcode
projects

If you only need a specific target and not all of them (cocoa, iphone) then you can
comment the unneeded makeProject calls.

Prerequisites
-------------

pbxproj (https://github.com/kronenthaler/mod-pbxproj)

Stefan Csomor