osx-lion

I'm having some trouble with C++11 in Xcode

ぐ巨炮叔叔 提交于 2019-12-01 06:10:43
I'm a Mac OS X Lion user who uses Xcode for C++, and it appears that no updates are available for Xcode. I do not appear to be able to compile C++11-exclusive code, but for whatever reason, I thought Apple had gotten C++11 pretty much implemented. And yes, I do have support for Command Line Tools. Then again, that might just be me. If so, is there any sort of IDE that supports C++11, or any way to upgrade? I use Xcode and set the following settings: C++ language dialect : C++11 or GNU++11 C++ Standart Library : libc++ (LLVM C++ standart library with C++11 support) Xcode version: 4.3.2 If you

68k Assembler on OS X Lion

天涯浪子 提交于 2019-12-01 06:06:52
I need to do some programming stuff in assembler for the 68k for my college class. I'm looking for a programm to do it on os x lion. I found easy68k which is running in wine, but I have the feeling that it's not working porperly. Any guess? Vasm is an assembler that can be built to target the 68k and works under OS X. Check the compilation notes, but basically the command to build it from source to target the 68k, using motorola syntax is: make CPU=m68k SYNTAX=mot I'm in the same situation, and I've found that Easy68k ( http://www.easy68k.com/ ) works very well under wine. Also, it is possible

Can't install FuzzyFinder in vim

三世轮回 提交于 2019-12-01 05:53:17
I download vim-fuzzyfinder into my downloads folder. I move the folder (containing autoload/ , doc/ , and plugin/ to ~/.vim/bundle/ (I'm using Pathogen, by the way). I start up vim and get the following error: Error detected while processing /Users/archio/.vim/bundle/vim-fuzzyfinder/plugin/fuf.vim line 13: ***** L9 library must be installed! ***** What happened? How can I get this to work? I'm fairly new to vim plugins. The plugin in question appears to have a dependency on the L9 library , which I hadn't come across either so far. Just install the L9 library and retry. Ah, and there is an

Problem installing Ruby 1.9.2 on Mac OS Lion

放肆的年华 提交于 2019-12-01 05:13:35
I am running Lion, utilizing Xcode 4, have RVM and homebrew installed but am only able to run ruby 1.8.7 spurvis:~ rogue$ ruby -v ruby 1.8.7 (2010-01-10 patchlevel 249) [universal-darwin11.0] spurvis:~ rogue$ I've read through several threads related to this topic but nothing seems to work for my problem: spurvis:~ rogue$ rvm install 1.9.2 Installing Ruby from source to: /Users/rogue/.rvm/rubies/ruby-1.9.2-p290, this may take a while depending on your cpu(s)... ruby-1.9.2-p290 - #fetching ruby-1.9.2-p290 - #extracted to /Users/rogue/.rvm/src/ruby-1.9.2-p290 (already extracted) Fetching yaml-0

Create new outgoing message with applescript in Microsoft Outlook

霸气de小男生 提交于 2019-12-01 04:26:12
I'm trying to create a new outgoing message with Microsoft Outlook 2011 for mac, using AppleScript . The following example worked in 10.6.8 : tell application "Microsoft Outlook" set newMessage to make new outgoing message with properties {subject:"Hooray for automation"} make new recipient at newMessage with properties {email address:{name:"Jim Shank", address:"jim.shank@example.com"}} open newMessage end tell On Lion I'm getting the following error: Microsoft Outlook got an error: Can’t make class outgoing message. Does anybody have a clue what went wrong there? I'm using offline Outlook.

68k Assembler on OS X Lion

偶尔善良 提交于 2019-12-01 04:12:04
问题 I need to do some programming stuff in assembler for the 68k for my college class. I'm looking for a programm to do it on os x lion. I found easy68k which is running in wine, but I have the feeling that it's not working porperly. Any guess? 回答1: Vasm is an assembler that can be built to target the 68k and works under OS X. Check the compilation notes, but basically the command to build it from source to target the 68k, using motorola syntax is: make CPU=m68k SYNTAX=mot 回答2: I'm in the same

How do I install IBM DB2 Express-C on Mac OS X 10.7 Lion? [closed]

百般思念 提交于 2019-12-01 04:09:35
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I was able to install and use IBM DB2 Express-C 9.5.2. beta in Mac OS X Snow Leopard with no trouble at all. In Mac OS X 10.7 Lion, though, installation using the db2setup script fails with: DBI1189E There has been an attempt to use db2setup on an image for a platform that does not match the current platform

Can't install FuzzyFinder in vim

十年热恋 提交于 2019-12-01 03:57:05
问题 I download vim-fuzzyfinder into my downloads folder. I move the folder (containing autoload/ , doc/ , and plugin/ to ~/.vim/bundle/ (I'm using Pathogen, by the way). I start up vim and get the following error: Error detected while processing /Users/archio/.vim/bundle/vim-fuzzyfinder/plugin/fuf.vim line 13: ***** L9 library must be installed! ***** What happened? How can I get this to work? I'm fairly new to vim plugins. 回答1: The plugin in question appears to have a dependency on the L9

Create new outgoing message with applescript in Microsoft Outlook

余生颓废 提交于 2019-12-01 01:21:45
问题 I'm trying to create a new outgoing message with Microsoft Outlook 2011 for mac, using AppleScript . The following example worked in 10.6.8 : tell application "Microsoft Outlook" set newMessage to make new outgoing message with properties {subject:"Hooray for automation"} make new recipient at newMessage with properties {email address:{name:"Jim Shank", address:"jim.shank@example.com"}} open newMessage end tell On Lion I'm getting the following error: Microsoft Outlook got an error: Can’t

Mac OS: How to draw graph in Mac OS application?

浪尽此生 提交于 2019-12-01 00:15:24
I am developing a Mac OS X application. In that i have to draw a wave graph / chart. Is there any library / framework available which makes my job easy? What is the best way of achieving this goal? Thanks in advance. Core Plot is a plotting framework for iOS and OS X. I'm not sure if it'll have the exact type of graph you want but it is probably your best bet. If a web-based API is acceptable then you could look at the Wolfram Alpha API (as @estro suggests) or perhaps the Google Chart API . Naftaly You can try Wolfram Alpha API . 来源: https://stackoverflow.com/questions/10256499/mac-os-how-to