Intel Fortran compiler broken under Mavericks

After upgrading to OS 9 on a Mac Pro and a MacBook Pro, and installing Xcode 5.0.1 on both, my Intel Fortran compiler (vs 12.0.5) no longer works.  I have updated the command line tools.  When I try compiling a source file it fails with the message:
ifort: error #10001: could not find directory in which g++ resides
There is a compiler option to specify the location of g++ "-gxx-name=" but this doesn't help - same error message.  I'm not sure if I need to set a system variable or if I need to go back to an earlier version of Xcode.  Has anyone managed to get their Intel Fortran compiler working under Mavericks?

I haven't found this topic in the other Categories, so I'll reply here:
I'm having the same problem!!! Leopard has crashed ifort 32 bits! So I can't run my programs on my macbook core duo (32 bits), although it's ok with the ifort 64 bits version. But I really REALLY need the 32 version working on Leopard. Anyone has any clue about how to solve it? I've tried some 9.1 ifort's versions and the new 10.1 version. You can find evaluation versions on the intel's site.
Please someone help us.
Thanks,
Filipe

Similar Messages

  • Leopard broke Intel Fortran Compiler, both ver9 and 10

    Intel Fortran Compiler for Mac OS X Ver 9.1 and 10.0 is broken under Leopard. It can compile code, but the created executable segfaults with messages like these.
    forrtl: severe (174): SIGSEGV, segmentation fault occurred
    Image PC Routine Line Source
    read.out 0005B601 Unknown Unknown Unknown
    read.out 0005AAA3 Unknown Unknown Unknown
    read.out 00031A4A Unknown Unknown Unknown
    read.out 0000F664 Unknown Unknown Unknown
    read.out 00015FDE Unknown Unknown Unknown
    libSystem.B.dylib 94BF997B Unknown Unknown Unknown
    The program can be as easy as:
    parameter(ilon=144,ilat=73,igrid=ilon*ilat)
    parameter(iday=365)
    real*4 :: data(igrid), ave(igrid)
    open(10,file='u.bin',form='unformatted',access='direct',recl=igrid*4)
    open(11,file='u-daily.bin',form='unformatted',access='direct',recl=igrid*4)
    do it = 1, 365
    write(6,*) it
    read(10,rec=it) data
    ave = ave + data
    end do
    ave = ave / 365
    write(11,rec=1) ave
    stop
    end
    The program crashes at line 9 or 11 where vectorization comes into place.
    I went to the Intel homepage, and they acknowledge this as a problem but they are only willing to update IFC ver10 and leave the users of ver9 in the cold.
    Does anyone have a solution to this?
    (At least I will leave this message up so that hopefully someone at Apple will notice.)

    I haven't found this topic in the other Categories, so I'll reply here:
    I'm having the same problem!!! Leopard has crashed ifort 32 bits! So I can't run my programs on my macbook core duo (32 bits), although it's ok with the ifort 64 bits version. But I really REALLY need the 32 version working on Leopard. Anyone has any clue about how to solve it? I've tried some 9.1 ifort's versions and the new 10.1 version. You can find evaluation versions on the intel's site.
    Please someone help us.
    Thanks,
    Filipe

  • Intel Fortran compiler - ifortbin: No such file or.. [solved]

    Dear all!
    I am running arch64 with updated packages (I updated this morning). I am trying to install the intel fortran compiler. I took the "ifort" PKGBUILD file from AUR and I edited it to use the "em64t" packages instead of the "i386" packages. The package building and the installation went fine, but when I launch ifort, I get the following error:
    /opt/intel/fc/9.1.036/bin/ifort: line 42: /opt/intel/fc/9.1.036/bin/ifortbin: No such file or directory
    /opt/intel/fc/9.1.036/bin/ifort: line 42: /opt/intel/fc/9.1.036/bin/ifortbin: Success
    Instead, I should get a message saying that I gave no input files (I had the compiler working on Suse, that's how I know).
    Does anyone know why this is happening?
    Thanks for your help
              Valerio
    Last edited by valmar (2007-04-03 16:41:08)

    Thank to all those who looked at the thread. It seems that even if you install a 64 bit version on a 64 bit machine, you still have to have the following packages installed:
    lib32-glibc lib32-gcc.
    Which means that the 64 bit compiler is actually designed to run in a mixed system, and not a pure 64 bit system... very bizarre
             Valerio

  • [SOLVED] Intel Fortran Compiler v11.1.072 installation failed

    hi everyone!
    i have some problems with the intel fortran installation. i try to install both ia32 and intel64 version, but without success. i launch from the shell the file "install.sh" and i follow the instructions on the screen, it says that i have missing optional pre-requisites, but also in other linux distribution such as ubuntu or debian, i always skip missing optional pre-requisites and go on. so i do that, but in the step no. 6 when the installation begins, there are a lot of errors:
    Installing Intel(R) Fortran Compiler for applications running on IA-32
    component...
    Intel(R) Fortran Compiler for applications running on IA-32 component
    installation failed.
    Installing Intel(R) Math Kernel Library for applications running on IA-32
    component...
    Intel(R) Math Kernel Library for applications running on IA-32 component
    installation failed.
    what happens?
    thanks all for your replies, i'm here for other infos if you want.
    Last edited by zeruel85 (2010-06-28 07:56:26)

    ok, i solved the problem, but with another ifort version. first of all, install these required packages:
    sudo pacman -S glibc libstdc++5
    then download from aur the package "intel-compilers-common 11.0.074-2" and extract it. now:
    cd /PATH/intel-compilers-common
    makepkg
    sudo pacman -U intel-compilers-common-11.0.074-2-x86_64.pkg.tar.xz
    always from aur, download "ifort" and extract it. before compiling it, copy the file "l_cprof_p_11.0.074_intel64.tgz" from the "intel-compilers-common" folder into the "ifort" folder. now we must have the license file. we can get it from the official intel site:
    https://registrationcenter.intel.com/Re … NCOM&lang=
    just insert your email, select your country and click "Continue". we'll receive an email with the license key attached. now copy the file into the "ifort" folder. open a shell and do this:
    cd /PATH/ifort
    md5sum LICENSE.lic
    where "LICENSE.lic" is the name of your license key. after that, we have to modify the "PKGBUILD" file, always into the "ifort" folder. in line 19, write the correct license file name. in line 24 write the correct md5sum result. save and exit. now we can compile:
    cd /PATH/ifort
    makepkg
    sudo pacman -U ifort-11.0.074-2-x86_64.pkg.tar.xz
    now we have ifort installed! just logout/login to complete the installation! then type:
    ifort -help
    to verify if ifort was correctly installed. if the ifort guide appears, well done!

  • Adobe Reader forms broken under Mavericks

    Aftr installing Mavericks on Mac, you can fill in Adobe Reader forms as before, but when you try to e-mail them only the blank form is put in the e-mail. Anyone have a solution? Any idea if this also happens with Acrobat?

    is the problem specific to Reader 11 ? not experienced on reader 10 ?
    you could compare the settings of a working Reader 10.x with Reader 11.x where it throws the exception.
    Also ensure that while creating form in designer > File > Form properties> Default PDF render format is set as: Dynamic XML Form.

  • Java broken under Mavericks

    I'm on a Mac with OS X Mavericks and Java 7u45. after installing Mavericks you must install JAVA from JAVA.com and the most recent Apple JAVA update (Java For OSX 2013-05), which I did.)
    In Java Control Panel > Security, the Security Level "slider" is grayed-out (can't change it, it's set at 'High') and the 'Enable Java content in browser' check-box will not retain a check-mark. So I can't change either of these two settings. This happens as a 'Standard User' with Authentication or logged-in as an 'Administrator'.
    I've uninstalled JAVA, reinstalled JAVA, repaired permissions, restarted, etc.
    Any suggestions?

    I have a solution that has worked on 2 macs-an iMac and a macbook pro-both that were upgraded to mavericks. I got the help of a very smart person. his diagnosis was that there was interaction between Java 6 and 7 that was not a problem with 10.8.5 but having both is a problem with mavericks. my guess is that you previously installed Java 7 on top of Java 6, which was true for me.
    so, we eliminated all java files we could find, uninstalled Java 7, rebooted, flushed caches and reinstalled Java 7.
    here are the specific steps:
    -- /library/preferencepanes there is a file called "JavaControlPanel.prefPane" move that to trash
    --/library/ move the Java folder to the trash
    --/library/ move the Oracle folder to the trash
    --uninstall JRE 7.45
    you can do this by finding "JavaAppletPlugin.plugin" and moving it to the trash. that file is in /library/internet plug-ins. described here:
    http://www.java.com/en/download/help/mac_uninstall_java.xml
    --restarted and booted in safe mode (hold down the shift key during restart)
    http://support.apple.com/kb/ht1564
    --once safe boot was finished I logged back in and installed JRE-7u45
    at that point the Java control panel was back to working normally. You can adjust the security slider and the "enable Java content in the browser" will be checked.
    I do not know whether all these steps are required. I do know that this procedure has restored Java 7 functionality to my machines.
    hopefully Oracle will release a revised Java 7 that removes the offending files as part of its installation.
    if you follow these steps, let me know the outcome.
    good luck!
    pete

  • Arduino Editor broken under Mavericks?

    After being prompted to download java se 6 & performing the installation, I see all kinds of java errors in the editor - even a copy and paste produces errors. Anyone else seing this?

    I have a solution that has worked on 2 macs-an iMac and a macbook pro-both that were upgraded to mavericks. I got the help of a very smart person. his diagnosis was that there was interaction between Java 6 and 7 that was not a problem with 10.8.5 but having both is a problem with mavericks. my guess is that you previously installed Java 7 on top of Java 6, which was true for me.
    so, we eliminated all java files we could find, uninstalled Java 7, rebooted, flushed caches and reinstalled Java 7.
    here are the specific steps:
    -- /library/preferencepanes there is a file called "JavaControlPanel.prefPane" move that to trash
    --/library/ move the Java folder to the trash
    --/library/ move the Oracle folder to the trash
    --uninstall JRE 7.45
    you can do this by finding "JavaAppletPlugin.plugin" and moving it to the trash. that file is in /library/internet plug-ins. described here:
    http://www.java.com/en/download/help/mac_uninstall_java.xml
    --restarted and booted in safe mode (hold down the shift key during restart)
    http://support.apple.com/kb/ht1564
    --once safe boot was finished I logged back in and installed JRE-7u45
    at that point the Java control panel was back to working normally. You can adjust the security slider and the "enable Java content in the browser" will be checked.
    I do not know whether all these steps are required. I do know that this procedure has restored Java 7 functionality to my machines.
    hopefully Oracle will release a revised Java 7 that removes the offending files as part of its installation.
    if you follow these steps, let me know the outcome.
    good luck!
    pete

  • Open file alarms severely broken under Mavericks

    Hi.
    So when I updated my systems to Mavericks, all of the alarms/alerts that open file to run an automator or Applescript applet had to be reset.
    Even resetting was tedious, as each of the applets first had to be run from the finder.  Then reset to the event(s) in Calendar..... but onle 2 can be set, then quit Calendar, then go back into calendar and set the next two......
    Until Mavericks, I have depended on Canlendar to run everything.Calendar, invoking applets is like the best thing since sliced bread for our uses!  On some days I have > 20 event alerts set.
    The problem is that even after the tedious process of resetting all the alerts, once set, any adjustment to one will cause it to run at that instant.  For example, I just went in to change a timer that was set to stop a particular event in another (scriptable) application at a particular time.  I chose to just delete the timer because I knew that changing it would cause it to run right then.  So I deleted it. Just deleting the alert caused it to run. right then.
    Note to Apple: PLEASE FIX THE PROBLEM WITH CALENDAR AND AUTOMATOR / APPLESCRIPT applets!!!!
    Note to anybody else who has been likewise devastatingly affected, IS THERE ANOTHER 3rd party app available that will do what we have been dependent on Calendar to do?
    This is awful. What a disaster.
    edited to add system using is OS 10.9.1
    Message was edited by: croixmom99

    Wow, ahahah.
    Found the bug source. A big OSX security flaw in my opinion. As the file was on the desktop, the path was Users/Me/Desktop/... However, I had a network connection to my pc, and the link was to my user account, Users/me/... So OSX was not trying to open its own /Users/ path but my PC folder... Somebody could fool the system, by creating a volume called /Users/... with some fake duplicate files, and someone could try to open something on his drive, but in fact it would load the evil Users volume.
    I don't understand how this could be possible. I never understood how bad the OSX network volumes system was that bad, but never tought it would be so crappy.

  • Contacts Applescript dictionary broken in Mavericks?

    So this script works fine in Mountain Lion, but is broken in Mavericks.  Apperntly, Applescript no longer knows the class "person" anymore, even though it's still listed in the Contacts dictionary.
    tell application "Contacts"
                        repeat with theName in every person
                                  set theName2 to the name of theName as string
    display dialog theName2
              end repeat
    end tell
    When I open this script under Mavericks, the person class has been replaced by  «class azf4»
    When I try to replace that with "person" again and compile, I get "Expected class name but found identifier".
    Running 10.9.2.  Anyone else see this?????

    This question came up in this thread. The solution is to rebuild the launch services database. Run the following command in terminal:
    /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.fram ework/Support/lsregister -kill -r -domain local -domain system -domain user
    then quit and relaunch the Finder.

  • Mistery around Intel Fortran/C compilers and my Macbook

    Hi all,
    First post here. I do not want to write a long post here but I really need some enlightenment about a strange problem.
    My Macbook came with Tiger and Xcode 2.4. Being a Fortran programmer, I installed Intel compilers without much hassle. Then Leopard arrived but I decided to not upgrade until receiving the green light from Intel (for months their compilers were broken for first-time Leopard users). A few months back most of issues seemed to be gone (I successfully installed the new compilers on 3 Mac Pros and 1 Intel iMac) and I was able to upgrade my Macbook to Leopard and the new compilers.
    Here starts the drama : last week I had to upgrade my hard drive so I backup everything and did a clean Leopard install on a new and bigger HD (Hitachi 200Gb 7200rpm). Everything went fine except the fortran/C compilers. The error message I get is unique (try Google) :
    ifort: error fatalerrorterminated: Fatal error in /opt/intel/fc/10.1.014/bin/ifortia32, terminated by segmentation violation
    (I got similar message if I setup 64 bit compiler)
    I can not compile anything. Even a simple hello.f. I even update to 10.5.4 but nothing changed. In fact, it was so frustrating that I decided to do another clean install of Tiger. Yes, I downgraded Mac OSX to 10.4, downloaded the old Fortran compiler (the one I had) and guess what ? I got the SAME message.
    I triple checked my shell environment, looked over all libraries but nothing seems wrong. The ONLY thing that caught my attention was during the installation, when I selected to format the new disk using HFS+ journaled (non case sensitive). I do not believe that my old original drive had a case sensitive system but I did not checked it.
    If you can help, it would be very much appreciated !

    Here is the crash log file I am getting :
    Process: ifortia32 [441]
    Path: /opt/intel/fc/10.1.007/bin/ifortia32
    Identifier: ifortia32
    Version: ??? (???)
    Code Type: X86 (Native)
    Parent Process: ifortbin [440]
    Date/Time: 2008-07-14 10:04:53.262 -0500
    OS Version: Mac OS X 10.5 (9A581)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x000000002820659e
    Crashed Thread: 0
    Thread 0 Crashed:
    0 ifortia32 0x0006ccf4 lmaster_listlfp + 297
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x28206572 ebx: 0x00068cfe ecx: 0x282065a2 edx: 0x00000002
    edi: 0x0080eed3 esi: 0x00000000 ebp: 0xbfffbfd8 esp: 0xbfffaf80
    ss: 0x0000001f efl: 0x00010202 eip: 0x0006ccf4 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x2820659e
    Binary Images:
    0x1000 - 0x1ddfe2 +ifortia32 ??? (???) /opt/intel/fc/10.1.007/bin/ifortia32
    0x266000 - 0x266ffd libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x8fe00000 - 0x8fe2d883 dyld 95.3 (???) <81592e798780564b5d46b988f7ee1a6a> /usr/lib/dyld
    0x90003000 - 0x90011ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x90655000 - 0x9067ffef libauto.dylib ??? (???) <d468bc4a8a69343f1748c293db1b57fb> /usr/lib/libauto.dylib
    0x906da000 - 0x906e1fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x92edd000 - 0x92edefef libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x94211000 - 0x94349ff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x948f6000 - 0x9497ffff com.apple.framework.IOKit 1.5.0 (???) <5d9b85c55183f9732eb9efc38d18ba53> /System/Library/Frameworks/IOKit.framework/Versi
    ons/A/IOKit
    0x94e11000 - 0x94ef0fff libobjc.A.dylib ??? (???) <5eda47fec2d0e7853b3506aa1fd2dafa> /usr/lib/libobjc.A.dylib
    0x95559000 - 0x956b3fe3 libSystem.B.dylib ??? (???) <8ecc83dc0399be3946f7a46e88cf4bbb> /usr/lib/libSystem.B.dylib
    0x95f4b000 - 0x95fa8ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x966c2000 - 0x967f4fe7 com.apple.CoreFoundation 6.5 (476) <8bfebc0dbad6fc33bea0fa00a1b9ec37> /System/Library/Frameworks/CoreFoundation.framework
    /Versions/A/CoreFoundation
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • Bug report for SS10U1 fortran compiler

    I am getting an internal error when compiling a larger fortran source file:
    f90: Internal Error, code=fw-assert-einln-835, last src=mbd.f:14
    If I first split the file and then compile the separate routines, the compiler survives:
    fsplit mbd.f
    f95 -c addblk.f fperio.f getblk.f mbbwi.f mgmbwi.f puta2blk.f putblk.f
    I'll be happy to provide a tar-ball to a Sun engineer.
    f90 -V
    Intel(R) Fortran Compiler for 32-bit applications, Version 8.1 Build 20050309Z Package ID: l_fc_pc_8.1.025
    Copyright (C) 1985-2005 Intel Corporation. All rights reserved.
    FOR NON-COMMERCIAL USE ONLY
    GNU ld version 2.15.90.0.1.1 20040303 (SuSE Linux)
    Supported emulations:
    elf_i386
    i386linux
    elf_x86_64
    best regards
    Dieter

    uups.
    sorry for printing the intel compiler version I am running.
    I veryfied that the problem persists
    This is the release of the Sun compiler causing the problem:
    /opt/sun/sunstudio10u1/bin/f90 -V
    f90: Sun Fortran 95 8.3 __version_f9x_patch_linux Build2_0 2005/08/01

  • AutoFS/automountd broken in Mavericks?

    Priot to upgradignto Mavericks (I was on Mountain Lion) I had AutoFS setup to mount two AFP volumes under /Volumes. Post upgrade this no longer works and in fact I cannot get any aspect of AutoFS/automountd to work.  Is this just me or is this completely broken in Mavericks?

    How do you have AutoFS set up, exactly? Have you specified auto mounts in directory utility under Mounts, or did you edit /etc/auto_master? Either way, it would appear that Mavericks no longer allows you to specify auto mounts that mount underneath /Volumes. Here is a relevant discussion:
    https://discussions.apple.com/message/23537689
    Two solutions.
    1. Specify a local mount point that consists of any path not underneath /Volumes. Example: /nas.
    2. Mount the volume through the finder, and once it shows up on your desktop, open up System Preferences -> Users & Groups -> Self -> Login Items, and drag and drop the resulting mounted volume icon in there. It will re-mount on login.

  • Mac Book Air 13 (october 2013) under Maverick /Flash Player 11 not active after installation

    I live in France and installed Flash Player 11 (last update) on my brand new Book Air.  Several times. Installation apparently succeeds, but it seems that nothing is effectively installed (I checked on the Adobe help site which confirms that). Indeed, I have nothing active and cant't hear audios, read graphics.... on web sites. I have messages saying " module manquant" (missing plug).
    I have checked Safari which correctly admits java and other plugs (security).
    Would my Book air be too weak for Flash Player (I have Intel 1,3 Mgz Core I5 processor). Would an older version of Player then help under Maverick ?
    Thank you !

    How to perform a "clean install" of Flash Player in Mac OS X

  • How to remove duplicate POP messages in Mail under Mavericks

    Hello
    I'm having some significant problems with Apple Mail, and despite having researched widely, I haven't been able to find a solution yet. Here is my tale of woe...
    My set up is that I use Mail with 5 separate accounts, downloading all messages using POP. I keep ALL my mail (even the trash) so that I have a permanent record of all conversations, going back more than 10 years - this is about 250,000 emails in around 250 subfolders. I'm running the latest version of Mavericks on a 2010 MBP. I have no intention of moving to IMAP - I need to keep a local archive of all my mail.
    A few months ago I was having problems with Mail being very slow to load and search emails. I decided to rebuild the mailboxes, but afterwards discovered that thousands of messages in the inbox of one of my accounts (and some of the sub-folders) had disappeared. Once I realised I tried to go back to a recent Time Machine back up, but, for whatever reason, that part of the back up hadn't worked properly and I was unable to recover the previous status. I left it while I decided what to do, and had time to deal with it...
    The last 2 years worth of emails on that account were still archived on gmail, so last week I decided to try redownloading the whole lot (something like 72,000 messages), and then planned to use one of the scripts I was aware of to remove the duplicates to the trash, and then remove any duplicates in the trash forever. That ought to mean I at least had an archive of the last two years of missing messages, even if I had no record of which ones had been flagged or replied to, etc.
    The downloading took about 24 hours to complete, and I now have almost 70,000 messages in the inbox of that account. I also rebuilt all the folders again, which doesn't seem to have resulted in any further loss of messages as far as I can tell. However, I hadn't figured on two things:
    1. Mail 'hides' duplicate messages, meaning that all of the messages I've downloaded are showing as unread, and I can't differentiate the ones I already had in my Inbox, and the new downloads. When I click on those apparently unread messages I can see if they have been replied to or forwarded, etc, but there's no obvious way for me to remove the ones I have already dealt with to the trash, without going through them all manually, which is clearly impossible.
    2. The scripts I'd found for removing duplicates don't work. Andreas Amann's Remove Duplicates script doesn't work under Mavericks, and he has abandoned the project. I've also tried the remove-duplicate-messages.scpt made by Jolly Roger (http://jollyroger.kicks-***.org/software/), and while it *sometimes* works on individual subfolders on my Mac (but as far as I can tell removes the duplicate in that folder, rather than the newly downloaded version), mostly it doesn't work at all - it creates a 'Remove Duplicate Messages' folder on my desktop, a log inside it and a folder for removed messages, but nothing appears in the duplicates folder.
    So, I'm left in a position where I have 70,000 apparently unread messages in my Inbox, a massively bloated Mail library (which has pretty much doubled in size, because of the 'hidden' messages), a slow and unresponsive Mail program. I've come to the conclusion that there must be some corrupted email somewhere, which probably caused the original email haemorrhage, and may still be causing the inability to remove duplicates. Mail is so slow as to be almost unuseable.
    I figure I have a number of options:
    1. I could live with the situation and just archive most of the Mail in my inbox, with the side effect that there will be a bunch of messages I have never replied to that are missed.
    2. I could abandon the last week's efforts and revert to the version of Mail I was using a week ago, and then redownload the recent emails from my various accounts. That would still leave me without those thousands of emails I lost on my local machine.
    3. I could find another way to deal with this. Can I get the remove duplicates script working? Should I revert to the version of Mail from a week ago, download ALL the messages again, but do it in a way that allows me to find the duplicates and remove them? Should I move to another email program altogether (which would presumably be massively disruptive to my work!)
    Anyway, apologies for the essay length of this request, and thanks in advance for any help you may be able to offer!

    hi Eric
    thanks for the tip, but I don't think that solves my problem, which is that Mail apparently hides the duplicates, so they're still there, you just can't differentiate or remove them. I actually *need* the duplicates there so I know I've got everything, but then I need to be able to move the ones I know I've dealt with from my inbox to an archive/trash, and/or remove them completely so Mail isn't totally bloated

  • When I check my boot SSD drive using Disk Utility under Mavericks, I often get "Incorrect number of extended attributes" errors.  But if I boot off an external drive and check the same SSD, no errors are reported.  Is this a bug in Mavericks?

    When I check my boot SSD drive using Disk Utility under Mavericks, I often get "Incorrect number of extended attributes" errors.  But if I boot off an external drive and check the same SSD, no errors are reported. 
    This happens not just with the SSD in my Mac Mini, but with another SSD in my MacBook (both now running Mavericks).  So far as I know, all of the kit I am using is in good order (despite the file corruption reports).  So I am beginning to wonder if it could be due to a bug in Mavericks?  Both SSD drives have been formatted to MacOS Extended (journaled) format.  Should I have used a different format, I wonder?
    Has anyone else encountered this issue?
    Does anyone have a solution?
    Or an explanation that might help my investigation of the issue?
    Thanks guys,

    I understand that the Corsair Force 3 is not one of the SSD drives that are supported on Apple Macs. 
    I did try downloading and using Trim Enabler, but the error message came up both when it was off and when it was on.
    I understand that not everyone thinks Trim Enabler is a good program, though there is a new version out now, so I may give it another try.

Maybe you are looking for

  • Downloading smartform as a word document

    Hi How to download smartformoutput as a word document.It was previously displaying as a pdf document. Can anybody give a sample code Edited by: Ramya Ramya on May 13, 2009 6:18 AM

  • Adaptive Web Service Model Problem

    AssociateSearchModel model = new AssociateSearchModel();           Request_RetrieveProfile requestMO = new Request_RetrieveProfile(model);                RetrieveProfile retrieveProfile = new RetrieveProfile(model);           retrieveProfile.setIniti

  • Scripting Error in Upload

    Here's an error I'm receiving when uploading a site. "DWScripts:AC_RunActiveContent.js - error occurred - An FTP error occurred - cannot put AC_RunActiveContent.js. Access denied. The file may not exist, or there could be a permission problem. File a

  • Camera not working with msn

    Hi all I just bought this MacBook Pro 2 weeks ago, the built in camera works fine with photobooth or facetime, but when I try using it on Skype or MSN, it does not work.  I cannot send myself over! I can see my friends but they can't see me.  -_- hel

  • How can i change my passcode from my icloud through a computer?

    im trying to change my passcode from my computer on my icloud but it isnt helping me..