LLDB: A new debugger for developers ... part of the LLVM project

I recently submitted https://aur.archlinux.org/packages/lldb-svn/ to the AUR.
The main website for the LLDB project is here: http://lldb.llvm.org/.
LLDB aims to be modular and easy to use and maintains much of the familiarity of GDB. This allows GDB users to quickly ramp up to start using LLDB.
LLDB is also able to disassemble machine code using LLVM libraries so as soon as new instructions are added to LLVM, they are automatically available in LLDB.
LLDB also has a large and active developer base and a larger customer base will get more bugs filed and hence better support for non-traditional distros like Archlinux. I myself am a long-term Arch user and even mentioning it at my workplace sparked quite some interest in the distribution.
The main motivation to submit this package was to get a larger customer base for the LLDB project that one of the teams were developing during my Winter internship at Intel Corporation, one of the main contributors to the LLVM project.
It does however take some time to build as it needs to build the LLVM libraries, the Clang libraries and then LLDB libraries/executables. If someone is interested enough to give it a try, please do and upvote the AUR submission and/or report any build/install problems and I will try to fix them.
Also, AFAIK, LLDB does not support multi-threaded executables yet. I am not sure since my internship ended a while ago.
Thanks!
Last edited by mtahmed (2013-05-01 04:05:36)

B. I have only been given a QT file of the pilot, as to cut a rough idea of the trailer, which I will then have to redo with the original HD files, when I return to them tomorrow.
Well, this will make cutting more difficult. Because a low res version of the trailer will not have any timecode...nothing that references the main movie. So you will do the cut with the QT movie and then have to go back and eyematch-cut the trailer with the high res footage. Not fun and very time consuming. Not to mention that you will be cutting with the mixed audio of the trailer, including music and that will not sound right when you cut the trailer with the new music.
You need a QT version of the movie that contains the timecode of the original master (using media Manager to recompress to DV or other offline codec will do this), and you REALLY need to get split track audio. If they are record producers, they'll know what that is.
Shane

Similar Messages

  • I have been asked to review a new app for Ipad/iphone . The developers site is asking me to download a plug- in to view, is this safe

    I have been asked to review a new app for Ipad/iphone . The developers site is asking me to download a plug- in to view, is this safe

    What does http://developer.apple.com/ have to do with reviewing an app? Why aren't you downloading from the App Store?
    I've never had any login there result in a request for any app....
    The Dev Center is as safe as your logon...

  • Ios 8 new features for developers?

    what is the ios 8 new features for developers which is not in ios 7.

    This is a user-supported technical forum. Your questions is more appropriate for the developer forums, not here.
    https://developer.apple.com/devforums/

  • Request for developers to include the Dell Quadro FX 3450 in their beta linux flashplayer for 10.1

    request for developers to include the Dell Quadro FX 3450 in their beta linux flashplayer for 10.1.  i'm guessing it wouldn't be hard to do.  its the same chip that is used in the Nvidia Geforce 6800.  It has NV42GL core processor.  please don't leave this device behind, any acceleration that can be done to the existing flash player would definitely count, as great.
    thank you

    Hi it turns out that the SVN version is the most up to date which does not need to be patched as it has the right version numbers. I have created a new PKGBUILD.
    # Maintainer: kso <keansum AT gmail DOT com>
    pkgname=freechart-svn
    pkgver=r3169
    pkgrel=1
    pkgdesc="Free powerful charting library based on wxWidgets."
    arch=('x86_64' 'i686')
    url="http://wxcode.sourceforge.net/components/freechart/"
    license=('custom:"wxWindows"')
    depends=('wxgtk')
    makedepends=('subversion')
    source=('svn+http://svn.code.sf.net/p/wxcode/code/trunk/wxCode/components/freechart/')
    md5sums=('SKIP')
    _svntrunk=http://svn.code.sf.net/p/wxcode/code/trunk/wxCode/components/freechart/
    _svnmod=freechart
    pkgver() {
    cd "$_svnmod"
    local ver="$(svnversion)"
    printf "r%s" "${ver//[[:alpha:]]}"
    build() {
    cd "$srcdir"
    msg "Connecting to SVN server...."
    if [[ -d "$_svnmod/.svn" ]]; then
    (cd "$_svnmod" && svn up -r "$pkgver")
    else
    svn co "$_svntrunk" --config-dir ./ -r "$pkgver" "$_svnmod"
    fi
    msg "SVN checkout done or server timeout"
    msg "Starting build..."
    rm -rf "$srcdir/$_svnmod-build"
    svn export "$srcdir/$_svnmod" "$srcdir/$_svnmod-build"
    cd "$srcdir/$_svnmod-build"
    # BUILD HERE
    ./configure --prefix=/usr
    make
    package() {
    cd "$srcdir/$_svnmod-build"
    make DESTDIR="$pkgdir/" install
    # install LICENSE
    install -D -m644 $srcdir/$_svnmod/license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
    I have uploaded onto the AUR. I have checked using namcap. Please let me know if there are any mistakes.  Many thanks!

  • FillBy always fills in the same row in data grid view. How to make it fill in a new row for each click of the Fillby Button? VB 2010 EXPRESS?

    Hi there, 
    I am a beginner in Visual Basic Express 2010. I have a Point of Sale program that uses DataGridView to display records from an external microsoft access
    database using the fillby query. 
    It works, but it repopulates the same row each time, but i want to be able to display multiple records at the same time, a new row should be filled for
    each click of the fillby button. 
    also I want to be able to delete any records if the customer suddenly decides to not buy an item after it has already been entered. 
    so actually 2 questions here: 
    1. how to populate a new row for each click of the fillby button 
    2. how to delete records from data grid view after an item has been entered 
    Thanks 
    Vishwas

    Hello,
    The FillBy method loads data according to what the results are from the SELECT statement, so if there is one row then you get one row in the DataGridView, have two rows then two rows show up.
    Some examples
    Form load populates our dataset with all data as it was defined with a plain SELECT statement. Button1 loads via a query I created after the fact to filter on a column, the next button adds a new row to the existing data. When adding a new row it is appended
    to the current data displayed and the primary key is a negative value but the new key is shown after pressing the save button on the BindingNavigator or there are other ways to get the new key by manually adding the row to the backend table bypassing the Adapter.
    The following article with code shows this but does not address adapters.
    Conceptually speaking the code in the second code block shows how to get the new key
    Public Class Form1
    Private Sub StudentsBindingNavigatorSaveItem_Click(
    sender As Object, e As EventArgs) Handles StudentsBindingNavigatorSaveItem.Click
    Me.Validate()
    Me.StudentsBindingSource.EndEdit()
    Me.TableAdapterManager.UpdateAll(Me.MyDataSet)
    End Sub
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    'TODO: This line of code loads data into the 'MyDataSet.Students' table. You can move, or remove it, as needed.
    Me.StudentsTableAdapter.Fill(Me.MyDataSet.Students)
    End Sub
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Me.StudentsTableAdapter.FillBy(Me.MyDataSet.Students, ComboBox1.Text)
    End Sub
    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
    Me.MyDataSet.Students.AddStudentsRow("Jane", "Adams", "Female")
    End Sub
    End Class
    Get new key taken from
    this article.
    Public Function AddNewRow(ByVal sender As Customer, ByRef Identfier As Integer) As Boolean
    Dim Success As Boolean = True
    Try
    Using cn As New OleDb.OleDbConnection With {.ConnectionString = Builder.ConnectionString}
    Using cmd As New OleDb.OleDbCommand With {.Connection = cn}
    cmd.CommandText = InsertStatement
    cmd.Parameters.AddWithValue("@CompanyName", sender.CompanyName)
    cmd.Parameters.AddWithValue("@ContactName", sender.ContactName)
    cmd.Parameters.AddWithValue("@ContactTitle", sender.ContactTitle)
    cn.Open()
    cmd.ExecuteNonQuery()
    cmd.CommandText = "Select @@Identity"
    Identfier = CInt(cmd.ExecuteScalar)
    End Using
    End Using
    Catch ex As Exception
    Success = False
    End Try
    Return Success
    End Function
    In closing I have not given you a solution but hopefully given you some stuff/logic to assist with this issue, if not perhaps I missed what you want conceptually speaking.
    Additional resources
    http://msdn.microsoft.com/en-us/library/fxsa23t6.aspx
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem.

  • I created a new ID for my Iphone, because the old ID was an email address I no longer have. Also, the phone wouldn't recognize the password I have always used. Now the problem is when I try to update my apps, it automatically wants to use the old ID.

    I created a new ID for my Iphone, because the old ID was an email address I no longer have. Also, the phone wouldn't recognize the password I have always used. Now the problem is when I try to update my apps, it automatically wants to use the old ID. I've set the new ID for the phone, but it defaults to the old one when asking for a password to update apps.

    That's because all apps are forever tied to the Apple ID used to obtain them, & can only be updated using that ID.
    To use your new ID with these apps, you'll have to delete them, then repurchase. Or, contact iTunes support, explain the situation, & ask that they add these apps to the download queue of your new ID.

  • Just downloaded the new OS for IPhone. Despise the appearance. It has jacked with the way I like things in some unacceptable ways. Is there any way to keep the OS, but return to the old appearance? Important to know BEFORE I download OS for computer.

    Just downloaded the new OS for IPhone. Despise the appearance. It has jacked with the way I like things in some unacceptable ways. Is there any way to keep the OS, but return to the old appearance? Important to know BEFORE I download OS for computer.

    I know I am responding to my own thread, but I an SOOOO disgusted with Apple right now.
    The new iOS 7 was the lead story on CNN today... and it wasn't positive. Easy to see why, it's a graphics disaster. It is ugly, difficult to read, doesn't interface aesthetically with the iPhone 4S, and gives everyone in America vertigo. Either fix the appearance, or find some way to allow us to roll back to our previous iOS. Do so quickly, or this life-long Apple customer [circa 1978] will be moving on. If this represents shades of what is coming with OS Maverick, I am petrified. Further, I am a GM of a chain of newspapers and websites in the Austin, Texas area. I will be ripping out a scathing editorial. The notion that we can't roll back from something millions of us hate is despicable. I'm giving you one week. Be sure I am not alone.

  • I downloaded the new upgrade for Premier Elements 13 the other day, and now my program will hardly operate and will not do basic functions.  What can I do?

    I downloaded the new upgrade for Premier Elements 13 the other day, and every since then my program will hardly operate and cannot do most functions.  What can I do?

    Bill
    I went to the Premiere Elements 13 tryout page at the Adobe web site and downloaded the tryout. I used the Firefox browser (latest version).
    These are the details according to what was presented to me today
    1. In choice of download, I selected Multiple LanguagesIWindows 64 bitI 1.67 GB. I do not have a Windows 7 or 8 32 bit computer.
    In your case, you would expect that you used used Multiple LanguagesIWindows 1.50 GB (which would have been the 32 bit version
    in agreement with your Windows 7 or 8 32 bit computer.
    2. When I pressed the Download button, there appeared
    Akamai Download Manager
    Browse For Folder dialog - (where I designated Desktop as my save location for the saved file/folders from the download)
    3. The first file to download was the .7z which is named Premiereelements 13_LS26_win64.7z (in my case, in yours it should be ...._win32.7x)
    File 1 of 2.
    The second file to download was the .exe which is named PremiereElements 13_LS26_win64.exe (in my case, in yours it should be..._win32.exe)
    4. When "3" is finished, automatically the Install Now comes up with a dialog regarding the .exe with an Open button. Click on the Open button.
    5. Next there is a Folder Location dialog which I had set
    C:\Uses\Owner\Desktop\Adobe Premiere Elements 13
    I clicked next in this Folder Location dialog.
    6. Next there was an Adobe Premiee Elements 13 dialog "Preparing Files" with mention of "Extracting Files".
    When the extraction process was complete, there was the automatic appearance of the Files Are Ready with a check mark next to
    "Launch Adobe Premiere Elements 13. There I clicked the Finished button.
    7. Next up was the Adobe Installer dialog and the "Initializing Installer" message.
    8. Next came the Welcome dialog with choices of Install or Try. I selected Try.
    If you have a purchased serial number already, I assume that you can click install and use your purchased serial number.
    9. Next came the sign In Required dialog where I click the Sign In button.
    10. Next the Adobe Software License Agreement to which I clicked Accept.
    11. Next the Options dialog -
    Adobe Premiere Elements 13 4.1 GB
    Language English (North America)
    Location C:\Program Files\Adobe
    to all of 11 I clicked Install.
    and said Yes to User Account Control pop up.
    12. Automatic Install from there on.
    When I looked at my desktop I found saved there
    a. the .exe file
    b. the .7x file
    c. an Adobe Premiere Elements 13 Folder
    any of which I believe I could have installed from as I have described to you previously.
    If you cannot get the above to work, then you can try going through the process of getting the Adobe Premiere Elements 13 tryout
    from
    Adobe Photoshop Elements 13 Direct Download Links, Premiere too | ProDesignTools
    There you will end up with the .exe and .7z downloads. After you download and save these two to your desktop, then you begin the
    process by double clicking the exe and following the on screen instructions.
    Please review the above and determine how much of it you have been through before and the choices that you have made along the way.
    ATR

  • Clip for trailer won't load, regardless of the size the error message keeps popping up, "That clip is not long enough. Choose a longer clip for this part of the trailer."

    Clip for trailer won't load, regardless of the size the error message keeps popping up, "That clip is not long enough. Choose a longer clip for this part of the trailer."

    I got it out!
    Here is how.
    None of the Apple-suggested ways worked. However, before totally giving up I started Roxio Popcorn and pressed the big eject button on it. It came out effortlessly!
    So, I thought "Weird..."
    I put the CD back in and reproduced my original problem. I got it out just as easily using Roxio Popcorn Eject feature.
    So, I then thought "Maybe it is the disk?" There is nothing wrong with the disk as far as I can tell. It is perfectly round, has a smooth label-side surface. It is not even a label, it is a standard software install disk you buy in stores.
    I inserted a different disk. The mini mounted it, I browsed it, and then ejected it by dragging it to trash. Worked fine.
    I tried a few other disks.
    The drive seems to work fine.
    Maybe that CD is cursed, I dunno. I tried that disk in my PowerBook and it works fine there.
    Who knows ?
    I am still backing up my hard drive as I type this message in case I need to take it to the store.

  • When I create a new track for Guitar it labels the track "Clean Combo" no matter which amp I select.  Anyone else noticing this?

    When I create a new track for Guitar it labels the track "Clean Combo" no matter which amp I select.  Anyone else noticing this?

    Look at it this way: there is no need to record that effect onto the audiofile. This is a great advantage of modern recording, and this is how most DAW's work by default. Just leave the plugin on when playing back.
    Only for CPU management reasons it may be advantageous in certain situations to either freeze a track or bounce it in place (both techniques will render an audiofile that may include the effect). But in general it is a (very) good thing that it is possible to tweak any effect after recording, and have a clean, unprocessed recorded signal to work with. And if the effect was perfect at the time of recording, well, just leave the plugin(s) engaged.
    http://help.apple.com/logicpro/mac/10.1/#/lgcp8ae5826e
    http://help.apple.com/logicpro/mac/10.1/#/lgcpf1cbfd51
    ps: there is a way to record plugin effected signal live into the audiofile, but it involves creating a custom environment setup.

  • Different zoom levels for different clips in the same project?

    Hi
    I am making a movie with videos from two different cameras. As a result some of the clips are cut down in size to a small portion of the screen. This can be solved if it is possible to use different zoom levels for different clips in the same project. I have not been able to do this. Is it possible?
    kind regards
    Soren

    You can scale the small clips up to the same size of the larger one... but you will get a quality loss.
    Using Motion or Scale to Frame Size commands
    Better to scale the large ones down to a Sequence that matches the smaller clip dimensions.

  • New FCP user trying to learn the correct project and export settings for HD

    Hi, I am a novice and have used FCP on my laptop for university projects only, and now have been asked to cut a trailer for a 7 min HD Pilot.
    A. I had to work in a different part of the country for the last 2 weeks therefore making this more problematic for myself long term hence:
    B. I have only been given a QT file of the pilot, as to cut a rough idea of the trailer, which I will then have to redo with the original HD files, when I return to them tomorrow.
    C. I created a low res QT to work with in FCP and have probably set up my project in a odd/wrong way and need to export this DV low res version for viewing by tomorrow, and I would ideally like it to look like the right aspect ratio and what not.
    I know very little about ratios and interlaced and progressive files, and this project has been shot manly on a digital SLR camera for the animation, it has After Effects files and with sections of live action which I think was shot in HD 'i' mode.
    I would like to learn quickly the sort of setup I should have for this kind of project, how I should export this low res DV version for viewing and for exporting the final HD project with what settings I should use.
    I am sure I should have detailed more information, but as it is im not sure what is relevant. I can find out if im pointed in the right direction.
    Hope someone can help
    Cheers
    Kat

    B. I have only been given a QT file of the pilot, as to cut a rough idea of the trailer, which I will then have to redo with the original HD files, when I return to them tomorrow.
    Well, this will make cutting more difficult. Because a low res version of the trailer will not have any timecode...nothing that references the main movie. So you will do the cut with the QT movie and then have to go back and eyematch-cut the trailer with the high res footage. Not fun and very time consuming. Not to mention that you will be cutting with the mixed audio of the trailer, including music and that will not sound right when you cut the trailer with the new music.
    You need a QT version of the movie that contains the timecode of the original master (using media Manager to recompress to DV or other offline codec will do this), and you REALLY need to get split track audio. If they are record producers, they'll know what that is.
    Shane

  • KE28 Top-down distribution for only part of the Value Field

    Hi Experts,
    We have a situation where we will make manual postings in CO-PA through KE21N. Part of this postings will be at the lowest detailed level and part will be for a more summarized level od characteristics. All the postings will flow to the same value field.
    We need to make a top-down distribution only for the postings that were made in a summarized level, because the other postings already have the details that we need.
    Is it possible?
    Kind Regards
    Mayumi Blak

    Hi Venkata,
    Please note that :-
    you can not distribute to a characteristic that already contains a
    value.  Please see note 77476.  If you want to distribute to eg.
    profit center, then the characteristic must be initial (in the data
    to be distributed).
    In the case where the log showed "number of receivers" but no line
    written is a common problem in transaction KE28 logged by customers.
    One example is that, if the amount of line items is 0.00 for all the
    receivers, no line item will be written.
    No values in reference data:
    If there are no values in reference data for some segments (see the
    log). No records are posted (segments which were distributed, but
    their value is zero i.e. there is no value to be distributed, are not
    posted).
    No initial values in the distribution level (ie. # - non assigned)
    in each of the characteristics in distribution level.
    Kind Regards,
    Abhisek Patnaik,

  • How do I duplicate the exact playlists from my iphone 4th gen to my new ipod 4th gen 64gb?  So far I've created a new library for it, duplicated all the apps, books

    I'v been using an iphone 4 (16gb) for a year now, and have just got an ipod touch 4gen, 64gb.  I created a new library for this, and most of what I have managed to transfer everything onto the ipod touch.  However, although all my music has transferred, the playlists have not.  Do I have to transfer them manually?  That is, creating every playlist again, which would be a nuisance since I have 48 playlists and almost 250 pieces.  All the music have been bought from itunes. 
    What I plan to use the ipod for is mainly for books, magazines and itunes U podcasts.  Most other apps and music will be the same on both iphone and ipod.  Both are under my same apple id.  Please help, 'cos I've been searching for an answer on the internet and can't really find one.  Everything else has transferred expect the playlists.

    - Go to settings>Store and sign out and sign into your account.
    - Apps are locked to the account that purchased them.
    - To update apps you have to sign into the account that purchased the apps. If you have apps that need updating purchased from more than one account you have to update them one at a time until the remaining apps were purchased from one account.

  • This isn't a question but rather a warning to anyone using the new OS for iphone 4.  The imessage uses up your data plan like crazy.  I called Apple about it and they said no it's not doing it.  I called AT

    The new OS is burning through my data plan like crazy and here's why.  Imessage uses your data plan and not your texting plan.  So every time you send a text message to someone with an iphone it uses imessage and it uses your data, not your text plan.  I couldn't figure out why I was burning through so much of my data plan so quickly.  I called Apple and they said, no it's not the data plan doing it.  I called AT&T and they said, yes, the imessage uses data instead of your texting plan if you are texting to another iphone.  Also, the new OS runs your apps all the time, even when you aren't using them.  So if you are not near wifi your apps are running and burning your data plan.  The AT&T guy took me through the steps to turn off the apps.  You can still use them but they won't be running constantly.  Seriously Apple, you should let people know this.  It does say it in the fine print on the website "data rates may apply" under imessage but most people will never read this.  So my data plan started on October 10th and it's already at 175 megabytes and I only have a 200 megabyte plan.  I've never used more than 50 to 75 megabytes in a month.  Apple get it together and be honest with people and tell them.  Quit denying the problem.  Most people have probably not even discovered this yet.  Wait till you get your bill.

    kimmie92592 wrote:
    It's not really common knowledge because I've talked to several people today and none of them knew about it.  Also, when I called Apple they said no the new OS is not using data.  Totally wrong answer.  You'd think they'd know about it and at least tell people.  The people who are going to be hit by this are people like me with the 200mb plans.  I just think it's best to spread the word so people can know what's happening.  I still don't know how I went through so much data in such a short period of time.  It's not happening anymore though, not since I fixed everything up last night. 
    If you are using a free wifi connection, there are no data charges with iMessage.  But in an area where you did NOT have a wifi connection, of course it used 3G and of course you got charged for it (or had it count against your plan limits).
    I'll ask again - without a wifi connection, just what did you think was happening?  How did you think your iPhone was able to magically send a message WITHOUT using any data connection?  A little bit of rational thought would have made you realize that there was no way, over a 3G connection (which is a service provided by your cellular service provider, NOT Apple), that you can send or receive ANYTHING without your service provider's plan picking it up.
    Nothing abut iMessage has ever hinted that it can, in any way, bypass your service provider when NOT using a wifi connection.

Maybe you are looking for