Some bug in xcode's non gnu arm assembler.

this is a very lite demo, taked from my complete hook project.
.syntax unified
.macro .donothing
.text
.private_extern $0
.globl $0
.align 2
.arm
$0:
    movw    r0, :lower16:2f-(1f+8))
    movt    r0, :upper16:2f-(1f+8))
1:
    add     r0, pc, r0
    blx     lr
.cstring
2:
    .asciz $1
.endm
.donothing _getstr, "He llo wor ld !\n"
I added the .s file into xcode, and call it from main.cpp like this
#include <stdio.h>
extern "C" char* getstr();
int main(int argc, char* argv[]) {
    fprintf(stderr, "%s", getstr());
    return 0;
only "Helloworld!\n" printed in xcode's lldb console. all space in $1 removed during macro expanding. surely *.o file already have striped version for my string (with otool).
I am using XCode 4.3.3, I think it's totally a bug, not a design.
because the same x64 version working fine.
.macro .donothing
.text
.private_extern $0
.globl $0
.align 2
$0:
    leaq     1f(%rip), %rax
    ret
.cstring
1:
    .asciz $1
.endm
.donothing _getstr, "He llo wor ld !\n"
back to the arm clang/llvm as, I found instruction like
adr r12, label
just let assembler (libexec/arm/as) crash without any output.
ldr r12, =0x8
can crash assemberl sometimes too.

Aperture fails to function correctly with an explicitly supported camera, running on an explicitly supported OS and an explicitly supported machine. How is that not a bug? And why is calling a bug a bug off-putting? There is nothing strange about bugs, practically all software has plenty of them.
Frankly, I found Frank's first comment, with the immediate dismissal (without asking any questions) and the silly remark about zebras, quite arrogant. But enough of this, I have no desire for discussions of matters of no consequence with strangers on the web.
To get back on topic, I tried Canon's EOS Utility on the same machine, and it imports all files without problems. This is a quite strong further evidence that the problem is somewhere in Aperture's software stack (and Image Capture's). I suggest that anyone with the same problem use EOS Utility to grab the files until the bug is fixed. I'll try to contact the Aperture devs in the way Terence Devlin suggested.

Similar Messages

  • ICloud changes my calendar colors.  I am no longer able to pick my own calendar colors.  This is due to some bug on iCloud.  FIX THIS PROBLEM IMMEDIATELY APPLE!!!  THIS IS RIDICULOUS.  iCloud should not force us to pick calendar colors.

    iCloud changes my calendar colors.  I am no longer able to pick my own calendar colors.  This is due to some bug on iCloud.  FIX THIS PROBLEM IMMEDIATELY APPLE!!!  THIS IS RIDICULOUS.  iCloud should not force us to pick calendar colors.  We should be able to pick our own!!!!!

    Same here, Calender keeps reverting to Purple a color I never ever even picked, screw you iCloud, you continue to annoy me and baffle me with your inadequecies

  • [svn:fx-trunk] 10075: Cleanups from the spark text changes and some bug fixes for VideoElement.

    Revision: 10075
    Author:   [email protected]
    Date:     2009-09-08 18:01:58 -0700 (Tue, 08 Sep 2009)
    Log Message:
    Cleanups from the spark text changes and some bug fixes for VideoElement.  Also some PARB changes for UIComponent.
    TitleBar: Changing the skin part type from Label to Textbase
    UIComponent: skipMeasure()->canSkipMeasurement() to be in line with GraphicElement.  This has been PARB approved.
    UIComponent: same with hasComplexLayoutMatrix...this replaces hasDeltaIdentityTransform.  This has been PARB approved.
    StyleProtoChain: cleanup around what interfaces to use
    TextBase: clean up code that?\226?\128?\153s no longer needed.
    VideoElement: Fixing 4 bugs:
    SDK-22824: sourceLastPlayed keeps track of what video file we?\226?\128?\153ve called play() with last.  This way if a user pauses the video and wants to start it up again at the same point, we can call play(null) on the underlying FLVPlayback videoPlayer.  However, anytime the souce changes, we want to null out sourceLastPlayed.  This was causing a bug when someone set the source to null and then reset it to it?\226?\128?\153s previous value.
    SDK-23034 (GUMBO_PRIORITY): This deals with some FLVPlayback quirks around sizing.  I had put in a fix so we weren?\226?\128?\153t setting width/height on the underlying videoPlayer too many times, but apparently we need to make sure it always gets called once.  Hopefully when switching to Strobe we can cleanup this logic...I put a FIXME in to do this.
    SDK-21947/ SDK-22533 - some video files don?\226?\128?\153t always send out a metadata event.  I?\226?\128?\153m not quite sure why this is, but in case this happens, we do a check in the ready handler to see whether we should call invalidateSize() to make sure it gets sized properly.
    QE notes:-
    Doc notes:-
    Bugs: SDK-22824, SDK-23034, SDK-21947, SDK-22533
    Reviewer: Glenn, Corey
    Tests run: checkintests, Button, GraphicTags, VideoElement, and VideoPlayer (some VideoPlayer were failing, but I think it should be fine)
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/windowClasses/TitleB ar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
        flex/sdk/trunk/frameworks/projects/spark/src/mx/core/UITLFTextField.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Group.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Label.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichEditableText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/GroupBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/Skin.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/TextBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AddActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AnimateTransfor mInstance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/RemoveActionIns tance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/GraphicEleme nt.as

  • Just got some bugs with Dock and Dashboard

    Hi!
    Been using my mac for 1 year now. Sudden some bugs just came by.
    I was using two widgets; "Ordbok" and "TriTrans".
    When I now try to use TriTrans I get this: http://bildr.no/view/75953 and I can't enter a search.
    When I try to use Ordbok i get this: http://bildr.no/view/75954
    I tried to make a new account just to see if I got the same problem and I sudden did. Then I went back to my main account and deleted the Dock, Desktop and Dashboard pref files (in Library/Preferences). Rebooted and tried again. Didn't work.
    When I made a new account I also noticed that the Dock had an icon with the "question mark" (this ting: ?). When I hovered it I got: "iMovie". Some icons to the left I got a working "iMovie HD". Where does the iMovie (wannabe) icon come from? (It was a new account).
    Anyways, someone now how to fix some of these?
    Thanks!
     MacBook   Mac OS X (10.4.9)   2 Ghz Intel Core Duo, 1 Gb RAM

    Ahh, that solves my widget problem. Thanks!
    Btw, someone who got any idea of the "question mark" icon I get in the dock when deleting the Dock config file or add new user? It says "iMovie" but beside it I got the "iMovie HD" icon, working.

  • Some bugs using socks5 proxy mode

    Hi, i have FireFox v28. I was develop soks5 proxy and find some bugs on FF. I use options on FF soks5 proxy at 127.0.0.1:2002 and open site https://ssl.exelab.ru/f/
    Here is an packets in bytes:
    [FF] 05-01-00 // FireFox say here that support one auth on free mode it's ok
    [S5] 05-00 // Soks5 accept connection in free mode
    [FF] 05-01-00-03-0D-73-73-6C-2E-65-78-65-6C-61-62-2E-72-75-01-BB // Here bugs
    Bug #1
    Why FF send address type IPv6? On my system i have only two network interface what support only IPv4. IPv6 has dissabled.
    Bug #2
    Wrong packet format. FireFox send only 12 bytes
    Protocol version: 05
    Command type: 01 // connect
    Reserved: 00
    Address type: 03 //IPv6
    Address: 0D-73-73-6C-2E-65-78-65-6C-61-62-2E-72-75 // has only 14 bytes
    Port: 01-BB // SSL 443
    In RFC1928 (http://www.ietf.org/rfc/rfc1928.txt) says what IPv6 must be 16 bytes!
    Bug #3
    Where FF took this address? It is not right. FF had to ask about the proxy address and address type using the command domain.
    Thanks

    127.0.0.1:2002 is your home network. I will assume that you are developing the sock5 proxy on your home network.
    IPV6 is backwards compatible. If it is sending or asking for IPV6 address then the site that you are navigating to has an IPV6 associated with the dns name. Do you allow IPV6 in the about:config page? (network.dns.disableipv6 set to true? )
    IPv6 addresses can be 16 or fewer, so this address is fine. Also the address comes from a reverse lookup gethostname() or in the case of IPV6() a domain ip6.arpa pointer is used. What is configured in Firefox how to connect to the network? Have you manually set up the proxy ip and port?

  • IPhone 5S: Some Bugs I've Noticed

    Hello! I got an iPhone 5S for Christmas, I absolutely love the phone. But I've noticed some bugs, so far two. So the first one is an iTunes Radio bug. Sometimes when I open it and click on a station. It will pause for a second, and kick me back to my home screen. It rarely happens but is annoying. Is there a fix for it? Also the second bug. I think it might happen on certain apps but I'm not sure, so far it has happened to me on the "YouTube" app, and one of my games "Hay Day". It's kinda weird, I opened these apps, and both did exactly the same both times. I tried closing out of them by the home button, and I tried locking my phone. And neither of these actions responded. I even tried turning off my phone. But still no response.
    So after a minute or two it reboots to the lock screen. It's very annoying also. Is there a way to fix this as well? These are the only problems I've had with the phone so far. And I sorta want them fixed!

    Apple genius bar will exchange for an Out of Warranty exchange unit identical to donor for $269 ,which you are likely to end up spending in the end anyway
    Should have purchased Applecare +

  • I've discovered some bugs in WLM 12

    I have observed some bugs in Windows Live Mail 12.  Where may I post them?

    You're welcome. To expedite the verification you can also post the request to the end of this thread.
    Verify Your Account 17
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • SQL Developer 2.1rc1 - some bugs

    Hi!
    I'd like to report some bugs I've encountered with the RC1 version of Oracle SQL Developer (Version 2.1.0.63 build MAIN-63.41).
    - The syntax error highlighting is not very good - I've successfully executed queries almost completely underlined with pink wavy lines
    - something strange happens when I hit <Enter> while the cursor is at the end of a row that reads " union all" - a new line does not get inserted, and the cursor disappears. <Backspace> and <Enter> again, and it works ok.
    - query execution - the command I entered gets modified, stripped of comments, as far as I can tell, and if I get an error report, the line number reported is off by a couple of lines. I remember this working better in 1.5.

    I found a few bugs in the first ten minutes of use:
    - The main one was that my backspace key didn't work, no idea why this was as my keyboard is pretty standard?
    - The search/highlight window changes size when adding a new highlight, and the close button then disappears until it's re-sized
    - Editing xmldata in a window works, if it's not syntax highlighted or able to be pretty printed, but clicking ok does not change the value? Should either work or warn that it doesn't work.
    - In the query result window is 'SQL' in blue, not easy to notice that it's a button'y thing to click and see the SQL that was executed. Also, why does the little bubble with the code just float in the middle and not point to anything in particular? Surely it could point to the 'SQL' button or similar?

  • [svn:fx-trunk] 11810: Fixing up some logic around pauseWhenHidden ( there were some bugs) and also changing some logic around enabling/ disabling.

    Revision: 11810
    Revision: 11810
    Author:   [email protected]
    Date:     2009-11-13 17:07:56 -0800 (Fri, 13 Nov 2009)
    Log Message:
    Fixing up some logic around pauseWhenHidden (there were some bugs) and also changing some logic around enabling/disabling.  Also fixing a small documentation bug on VideoPlayer2.scaleMode.
    When a video component (or one of its ancestors) becomes disabled, the video pauses.  When it becomes re-enabled, we do not play the video.  This behavior is baked in to VideoDisplay and does not depend on the pauseWhenHidden flag.
    QE notes: -
    Doc notes: -
    Bugs: SDK-24182, SDK-24181, SDK-24193
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24182
        http://bugs.adobe.com/jira/browse/SDK-24181
        http://bugs.adobe.com/jira/browse/SDK-24193
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoDisplay.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as

    Thanks Erik,
    If nothing else, this huge list of updates and fixes, shows clearly that the Logic Dev team is working hard on fixing and improving LPX to a major degree.... and from the list of fixes done.. show they do read the bug reports submitted!
    As an aside....
    I recall how all the 'naysayers' prior to LPX (and in some cases, since...)  were proclaiming how Logic was dead, the team was being disbanded, we won't see any further development, the Dev team doesn't listen or care... and so on....... I wonder where those people are now?

  • FCP 7 -  Share task w/ some bugs

    Share... is really a good feature in the new FCP 7 but, I think, it has some bugs
    First, in the "Share status window" never starts a progress bar. It always looks like as it were preparing but is transcoding. you should open "Batch Montitor" app to see what is happening.
    Second, if you check "Open with Quicktime Player" the "Share status window", the window will keep open all the time. When you check in "Batch Monitor" you see the status at 95% and nothing happen but if you check the movie in the finder it is finished and well done. You must cancel the job either in the "Share status window" or in the "Batch Monitor" app.
    Did someone experience the same problem?

    Thanks for the reply, Johnny.
    I wasn't saying AC3 s*u*c*k*s. And really.. Why is that word censored? I didn't do that.
    I was saying it ***** that you ONLY have the option of AC3 with the "Share to blu-ray" feature.
    And yea, I'm sure I would never know the differene, and especially not my grandparents with their home movies.
    But it just seems d*u*m*b (can I say that?) to be going through all this trouble for a "lossless" lineage, ie. HD camera, FCP, Blu-ray burner/player, and have to compress the audio. Isn't that one of the main advantages of blu-ray?! Quality? Wether we can detect it or not?! Ha!. Okay..
    I thought an easy workaround would be to export the audio to AIFF and drop it in.
    No idea why it's drifting....but yes, in the end i may settle.
    Though I'll feel cheated! Guess that's what I get for loving BOTH Apple and Blu-ray....
    If anyone has other processes of getting good 24p to Blu-ray, please share!
    Thanks again.

  • IOS7 has some bugs, Swipe changing lock screen! iphonehassomebugs

    Hi everyone,
    Iphone has some bugs(Part 1)
    Check this video for my very first bug experience,
    http://www.youtube.com/watch?v=QK_nIq4b82s&feature=youtu.be
    Steps to reproduce the issue:
    1. Keep the lock screen wallpaper and the home screen wallpaper different,
    2. Swipe right to unlock and swipe to the left immediately after you reach the right-end. Watch video for more reference.
    Other bugs on the way! .
    Regards,
    Sathish.

    Hmm, I have different wallpapers (one of my photo's for my lock screen and and just plain black for my home screen) and mine still does not do that.
    Try setting them both to something different, but simple - say different colors of one of the default screens.  Or just try one any pair of the default screens instead of your own custom pictures.  Does it still do it?  I cannot seem to get my iPhone to duplicate that no matter what I try with it.
    You can submit the info to Apple at http://www.apple.com/feedback/iphone.html  but try and give them as much details as you can, of anything you have tried that either does not change the abnormal behaviour or that does fix it.

  • Some bugs encountered. Code attached.

    Dear Sirs,
    I would like to report some bugs encountered in recent days. For more precision, the code of examples is attached in post.
    Problem: ContentHeight totally crazy
    ContentHeight is crazy, at the moment that adds new container.
    Reproduce:
    1. Run the code
    2. Set focus to end of text
    3. Click in button "Add Image"
    Look the containerHeight's label, is totally crazy (for me, is displayed 266798px).
    Problem: Inline Graphic with float, disappears?
    When insert graphic with float (left or right), just disappears.
    Reproduce:
    1. Run the code
    2. Click in button "Add Image (Float left)"
    Where is the graphic?
    Problem: ContentHeight is limited, when verticalScrollPolicy = ScrollPolicy.OFF
    Even if you put a higher content, the containerHeight is limited to container height.
    Reproduce:
    1. Run de code
    2. s tSet focuo in container
    2. Click in button "Scroll OFF"
    Verify that the containerHeight's label, displays the maximus height of the container, but its content is bigger than it.
    Thanks in advance.
    - Marcos

    I will look into the value you are getting back for contentHeight. One thing to note is that contentHeight is an estimated value. TLF will compose as much text as fits in the container, but if it is a scrollable container, and there is more text outside the container, then what is returned is an estimation based on text size of the text that fits. I'm not sure that explains what you're seeing, but it's something to be aware of. To get a fully accurate contentHeight or contentWidth, you have to call compose prior to getting contentHeight/contentWidth.
    Unfortunately floats are not yet fully implemented, so I would suggest not depending on them. Right now we are consolidating -- cleaning up APIs, fixing bugs, etc., and won't look at new features such as floats until that's completed.
    Your third point was about contentHeight being limited by compositionHeight when scrolling is OFF. This is by design. The idea is that the remaining text can flow into the next container. If you want the container to size itself to fit the text, set the compositionHeight to NaN.
    I hope this helps. Thanks for reporting these problems!
    - robin

  • Ios 6 have some bugs on ipod touch 4g like appstore search bug and accessibility which i cant go out from and crashes every where and imassages that the massge i send goes up and stick to the other messages plz help or do ios 6.1

    Ios 6 have some bugs on ipod touch 4g like appstore search bug and accessibility which i cant go out from and crashes every where and imassages that the massge i send goes up and stick to the other messages plz help or do ios 6.1 can i change my a4 chip plz i swear when i pressed done to submite this safari crashed

    Try to do a hard reboot (no data is lost) by holding down the home and power buttons at the same time untilyou see the Apple logo. Then, let go of both buttons. If that doesn't work, try restoring your iPod and do NOT restore from a backup. This will erase your data, but you can sync back everything except app data and settings from iTunes.

  • Lost all of my outlook groups, music and photos from my PC and iphone and Ipad2 when snycing up...Had to mannually reconfigure Outlook contacts - then deleted Iclound from everything - from other comments there are some bugs here and would warn others wh

    Lost email groups from outlook, photos and music from Iphone four and Ipad2 when snycing to Icloud.  Had to reconfgure Outlook Manually and then deleted Icloud. A warning to others that there are some bugs here or else it is not being exdplained properly to end users

    or... put your photos in "My Pictures" in My Documents, and viola, itunes syncs it to the iphone. only one sentence needed =/
    maybe im missing your point here, the long paragraph is mindboggling

  • [svn] 2578: Some bug fixes.

    Revision: 2578
    Author: [email protected]
    Date: 2008-07-23 06:31:04 -0700 (Wed, 23 Jul 2008)
    Log Message:
    Some bug fixes. hostComponent is now usable inside MXML script blocks (Skins) to refer back to the host component in a strongly typed manner. hostComponent now also works inside binding statements. Updated most skins to use hostComponent instead of data.
    QA: Yes
    Reviewer: Paul and my split personality Mwinyimkuu
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/skin/ApplicationSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/skin/ButtonSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/skin/CheckBoxSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/skin/PanelSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/skin/RadioButtonSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/skin/TextAreaSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/skin/TextInputSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/skin/ToggleButtonSkin.mxml
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/HostComponentEvaluator.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/ImplementationCompiler.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/InterfaceCompiler.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/WebTierAPI.java

    This bug figures out also when creating a custom spark ComboBox, then trying to programatically update the userProposedSelectedIndex property. The proposed selected index is selected, but does not apply the same skin as when mouse is on rollover or item is selected due to up and down keys.
    The issue seems like updating the status of the item renderer to rollover or selected to get the same skin applied.
    Please could you attach DropDow nList.as that you edited ?
    Thank you so much.

Maybe you are looking for

  • Can't seem to get my own domain name to work

    First of all I'm sure this has been asked a lot so apologies if it's a repetitive post I'm just at the hair pulling stage! Well. I've had no issues joining mobile me (joined a week ago) and publishing my site from iWeb. But then I wanted to get my ow

  • CUCM 8.6 upgrade to 9.1(2)

    Hello all, I've done some 8.5 upgrades to 9.1 so I'm quite familiar with the refresh upgrade process and the additional server downtime vs. say and 8 to 8.5. On reading the upgrade guide for CUCM 9.1(1), I stumbled across this line on page 5 - "You c

  • FILE.IO.PERMISSION and SOCKET.PERMISSION when calling jdev proxy from DB

    Hello everybody, i deployed a webservide proxy (made in jdev 10.1.3.2) to an oracle 10gR2 database. Invoking this proxy works very well when calling it (as a procedure in the database) on the same machine as the DB is running. But when trying to invo

  • Vendor enterprise services

    Hello, I'm looking for an entreprise service which returns the basic data or complete data of one or several customer/s in ERP(i.e. I need the information of customer with ID = 0000000025) or i.e. I need all data of all my customers, ID = *). I found

  • Sqlplus - hiding the SQL statement

    When I run sqlplus to spool a report, it always prints out the original SQL statement in the report, but I only want the results. For example, the following script: SET PAGESIZE 0 SET FEEDBACK OFF SPOOL report.log SELECT * FROM employees; SPOOL OFF p