osx-mavericks

How mavericks/xcode5.0.1 changed the compiler and linker?

▼魔方 西西 提交于 2020-02-02 13:38:47
问题 I upgraded a system from 10.8 to 10.9 and correspondingly for xcode from 5.0 to 5.0.1. I'm rewarded when I try to run a part of my build that combines multiple .a files into a single, larger, shared lib: Undefined symbols for architecture x86_64: "__ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE13find_first_ofEPKcmm", referenced from: __ZN2bt3fst12FstLookupSet14loadFromStringERKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_ in libbtfst.a(bt_fst_factory.o)

Maverick Issue : While adding a subview on NSView

爱⌒轻易说出口 提交于 2020-01-25 11:44:04
问题 I have a NSView(outlet - detailsView) , upon that a NSSplitView (outlet - detailsSpiltView) and there are two subviews in the split view and in those subview there are different scroll view and table view. NSView(detailsView) | NSSplitView(detailsSplitView) | | NSView NSView | | NSScrollView NSScrollView | | NSTableView NSTableVIew On a certain condition I am adding a an error view on detailsView and on other conditions the table view would be populated: The code for loading errorView is the

How to preserve alias property while signing app?

我的梦境 提交于 2020-01-24 11:25:35
问题 I have created on JavaFX application app at Mavericks and signing with Xcode 5.0.2 using - codesign --deep -s "my name" MayApp.app codesign -v MayApp.app && echo MayApp.app is Signed Successfully! WITHOUT SIGN MYAPP LAUNCHING FINE!! Without using --deep , I am not able to sign app at Mavericks. -- More Try -- Now at Mavericks, we can no longer sign a bundle if any nested bundle in that package is unsigned. I did sign the framework of my app by following the instruction written at - http:/

Why did installing Xcode command line tools change what 'gcc --version' reports

早过忘川 提交于 2020-01-22 13:37:44
问题 Recently I updated Xcode on OS 10.9 to version 5.0.1 through the AppStore. It appeared to me that this update also updated command line tools, for example running gcc --version produced Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/usr/include/c++/4.2.1 Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn) Target: x86_64-apple-darwin13.0

xcrun/lipo freezes with OS X Mavericks and XCode 4.x

懵懂的女人 提交于 2020-01-19 04:46:09
问题 Been trying to install psycopg2 with either easy_install or pip, and the terminal gets stuck in a loop between xcrun and lipo. sidwyn$ sudo easy_install psycopg2 Searching for psycopg2 Reading https://pypi.python.org/simple/psycopg2/ Reading http://initd.org/psycopg/ Reading http://initd.org/projects/psycopg2 Best match: psycopg2 2.5.1 Downloading https://pypi.python.org/packages/source/p/psycopg2/psycopg2-2.5.1.tar.gz#md5=1b433f83d50d1bc61e09026e906d84c7 Processing psycopg2-2.5.1.tar.gz

Erlang debugger error: Could not find 'wxe_driver.so'

孤者浪人 提交于 2020-01-15 07:48:26
问题 I can see the following error report when I start up the debugger. 2> debugger:start(). =ERROR REPORT==== 23-Jan-2014::11:59:08 === ERROR: Could not find 'wxe_driver.so' in: /usr/local/Cellar/erlang/R16B03/lib/erlang/lib/wx-1.1.1/priv {ok,<0.42.0>} The debugger window still starts despite the error report. Why the error? Will it cause debugger problem down the road? Erlang runtime is installed by homebrew. Version number is R16B03 回答1: I find a solution: brew install wxmac It works with

Erlang debugger error: Could not find 'wxe_driver.so'

限于喜欢 提交于 2020-01-15 07:48:13
问题 I can see the following error report when I start up the debugger. 2> debugger:start(). =ERROR REPORT==== 23-Jan-2014::11:59:08 === ERROR: Could not find 'wxe_driver.so' in: /usr/local/Cellar/erlang/R16B03/lib/erlang/lib/wx-1.1.1/priv {ok,<0.42.0>} The debugger window still starts despite the error report. Why the error? Will it cause debugger problem down the road? Erlang runtime is installed by homebrew. Version number is R16B03 回答1: I find a solution: brew install wxmac It works with

Why does Xcode crash when I open a project?

血红的双手。 提交于 2020-01-15 03:39:25
问题 I'm trying to open a project with the latest version of Xcode 5.0.2 (updated today). For some reason, it crashes. I can't open any project, it crashes all times :( Crash report begins like this (if helps): Process: Xcode [1631] Path: /Applications/Xcode.app/Contents/MacOS/Xcode Identifier: com.apple.dt.Xcode Version: 5.0.2 (3335.32) Build Info: IDEApplication-3335032000000000~4 App Item ID: 497799835 App External ID: 106632651 Code Type: X86-64 (Native) Parent Process: launchd [133]

CSS word-spacing issue in Safari 6.1/7.0 with text-align center

人走茶凉 提交于 2020-01-14 18:59:08
问题 When I align text center in Safari 6.1/7.0 and add word-spacing, it centers the text as if its width did not include the space in the center. E.g. CSS div { width:300px; border: 1px solid #CCC; } h1 { text-align:center; word-spacing: 90px; } E.g. HTML <div> <h1>Text Text</h1> </div> How it displays in all other browsers: http://i.imgur.com/JfdM2YG.png How it displays in Safari 7.0: http://i.imgur.com/OrhLa2Y.png A demo: jsfiddle.net/2rwa3/2/ Are there any workarounds for this without wrapping

CSS word-spacing issue in Safari 6.1/7.0 with text-align center

谁都会走 提交于 2020-01-14 18:58:52
问题 When I align text center in Safari 6.1/7.0 and add word-spacing, it centers the text as if its width did not include the space in the center. E.g. CSS div { width:300px; border: 1px solid #CCC; } h1 { text-align:center; word-spacing: 90px; } E.g. HTML <div> <h1>Text Text</h1> </div> How it displays in all other browsers: http://i.imgur.com/JfdM2YG.png How it displays in Safari 7.0: http://i.imgur.com/OrhLa2Y.png A demo: jsfiddle.net/2rwa3/2/ Are there any workarounds for this without wrapping