Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 37

Thread: Radioactive: Need a volunteer to compile OSX app

  1. #21
    Diamond Member
    zombie67's Avatar
    Join Date
    October 24th, 2010
    Location
    Reno, NV
    Posts
    7,269

    Re: Radioactive: Need a volunteer to compile OSX app

    Hmm. Still no joy.

    http://radioactiveathome.org/boinc/r...esultid=171989

    Stderr output
    <core_client_version>6.12.35</core_client_version>
    <![CDATA[
    <message>
    process exited with code 2 (0x2, -254)
    </message>
    <stderr_txt>

    </stderr_txt>
    ]]>
    "Don't confront me with my failures, I had not forgotten them" - Jackson Browne

    Avatar source


  2. #22
    Gold Member
    Slicker's Avatar
    Join Date
    October 25th, 2010
    Location
    South of Cheeseland
    Posts
    1,253

    Re: Radioactive: Need a volunteer to compile OSX app

    Since it isn't even getting to the first line of output which happens prior to anything else, my guess is that it can't find the usb library.

    What do you get when you run:
    otool -L <app_name>
    Spring 2008 Race: (1st Place)

  3. #23
    Diamond Member
    zombie67's Avatar
    Join Date
    October 24th, 2010
    Location
    Reno, NV
    Posts
    7,269

    Re: Radioactive: Need a volunteer to compile OSX app

    Quote Originally Posted by Slicker View Post
    Since it isn't even getting to the first line of output which happens prior to anything else, my guess is that it can't find the usb library.

    What do you get when you run:
    otool -L <app_name>
    % otool -L ./radac_1.54_x86_64-apple-darwin
    otool: Command not found.

    Maybe the command has a typo?
    "Don't confront me with my failures, I had not forgotten them" - Jackson Browne

    Avatar source


  4. #24
    Gold Member
    Slicker's Avatar
    Join Date
    October 25th, 2010
    Location
    South of Cheeseland
    Posts
    1,253

    Re: Radioactive: Need a volunteer to compile OSX app

    snowleopard:Release jon$ otool -L ./radac_1.54_x86_64-apple-darwin
    ./radac_1.54_x86_64-apple-darwin:
    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit (compatibility version 1.0.0, current version 275.0.0)
    /usr/local/lib/libusb-0.1.4.dylib (compatibility version 9.0.0, current version 9.4.0)
    /usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 1.0.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 111.1.4)


    Maybe XCode needs to be installed or something to be able to use otool.
    Spring 2008 Race: (1st Place)

  5. #25
    Diamond Member
    zombie67's Avatar
    Join Date
    October 24th, 2010
    Location
    Reno, NV
    Posts
    7,269

    Re: Radioactive: Need a volunteer to compile OSX app

    Okay. I am downloading xcode now, and will let you know. 4gb+
    "Don't confront me with my failures, I had not forgotten them" - Jackson Browne

    Avatar source


  6. #26
    Diamond Member
    zombie67's Avatar
    Join Date
    October 24th, 2010
    Location
    Reno, NV
    Posts
    7,269

    Re: Radioactive: Need a volunteer to compile OSX app

    That helped some. At least the command works now.

    %otool -L ./radac_1.54_x86_64-apple-darwin
    ./radac_1.54_x86_64-apple-darwin: is not an object file
    "Don't confront me with my failures, I had not forgotten them" - Jackson Browne

    Avatar source


  7. #27
    Gold Member
    Slicker's Avatar
    Join Date
    October 25th, 2010
    Location
    South of Cheeseland
    Posts
    1,253

    Re: Radioactive: Need a volunteer to compile OSX app

    I think you are still testing the first version that was not an object file. Download the current one at http://boinc.thesonntags.com/collatz...ple-darwin.zip
    Spring 2008 Race: (1st Place)

  8. #28
    Diamond Member
    zombie67's Avatar
    Join Date
    October 24th, 2010
    Location
    Reno, NV
    Posts
    7,269

    Re: Radioactive: Need a volunteer to compile OSX app

    Quote Originally Posted by Slicker View Post
    I think you are still testing the first version that was not an object file. Download the current one at http://boinc.thesonntags.com/collatz...ple-darwin.zip
    I don't know how that would be possible, since they are different file names. x86_64 is the new one right? In any case, I will re-download it and try again.

    Edit: Ah! This download has a lot more files. The second download (the one where you moved to x86_64) I tried earlier had only the executable. Did you rev it twice?

    Edit 2: Working!

    Code:
    % !!
    otool -L ./radac_1.54_x86_64-apple-darwin
    ./radac_1.54_x86_64-apple-darwin:
    	/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit (compatibility version 1.0.0, current version 275.0.0)
    	/usr/local/lib/libusb-0.1.4.dylib (compatibility version 9.0.0, current version 9.4.0)
    	/usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 1.0.0)
    	/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 111.1.4)
    Edit 3:


    Fri Jan 6 07:37:05 2012 | Radioactive@Home | update requested by user
    Fri Jan 6 07:37:09 2012 | Radioactive@Home | Scheduler request completed: got 0 new tasks
    Fri Jan 6 07:37:09 2012 | Radioactive@Home | No tasks sent
    Fri Jan 6 07:37:09 2012 | Radioactive@Home | Message from server: Your app_info.xml file doesn't have a usable version of Radioactivity Monitor.
    I noticed one line in the app_info.xml still had i686, so I tried changing that to x86_64. But that did not fix the issue.
    Last edited by zombie67; 01-06-12 at 10:38 AM.
    "Don't confront me with my failures, I had not forgotten them" - Jackson Browne

    Avatar source


  9. #29
    Gold Member
    Slicker's Avatar
    Join Date
    October 25th, 2010
    Location
    South of Cheeseland
    Posts
    1,253

    Re: Radioactive: Need a volunteer to compile OSX app

    I noticed one line in the app_info.xml still had i686, so I tried changing that to x86_64. But that did not fix the issue.
    Try taking out the platform completely. Since they have no OS X apps installed, it could be that the server is rejecting any OS X requests. So long as they have the anonymous platform enabled, you really don't need the platform element in the app_info.xml file.

    It is hard to tell exactly how they have it configured since they have linux listed as nci but not windows. So, if that doesn't do it, try adding: <plan_class>nci</plan_class>

    (for reference: http://boinc.berkeley.edu/wiki/Anonymous_platform)
    Spring 2008 Race: (1st Place)

  10. #30
    Diamond Member
    zombie67's Avatar
    Join Date
    October 24th, 2010
    Location
    Reno, NV
    Posts
    7,269

    Re: Radioactive: Need a volunteer to compile OSX app

    Ah, I see what is happening here. At start up, something is actually removing the app file! And it is happening at start up, not later when boinc requests work from the project. WTF? Why would BOINC delete a file like that?

    --

    Also, this message is further up (earlier) in the start up:

    Fri Jan 6 11:53:41 2012 | Radioactive@Home | [error] State file error: missing application file usblib-0.1.4.dylib

    I see that the actual file name included in the zip package is:

    libusb-0.1.4.dylib

    So I updated the app_info.xml to match the file name in a couple of places. Now the message says:

    Fri Jan 6 12:06:14 2012 | Radioactive@Home | [error] State file error: missing application file libusb-0.1.4.dylib
    "Don't confront me with my failures, I had not forgotten them" - Jackson Browne

    Avatar source


Page 3 of 4 FirstFirst 1234 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •