https://bugzilla.redhat.com/show_bug.cgi?id=1083962

Christopher Meng <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]



--- Comment #10 from Christopher Meng <[email protected]> ---
1. LDFLAGS? Try %{__global_ldflags} macro.

2. MaxScale is an open-source, database-centric proxy that works with MariaDB
and
MySQL

Dot should be at the end, right?

3. Do you manage your software with no configure system? I hope you can
persuade someone to do that(CMake or autocrap, up to you :)

--------------------ARM--------------------

Error output:

skygw_utils.cc: In function 'int atomic_add(int*, int)':
skygw_utils.cc:144:15: error: impossible constraint in 'asm'
   : "memory" );

Code block:

int atomic_add(
        int *variable,
        int value)
{
    asm volatile(
        "lock; xaddl %%eax, %2;"
        :"=a" (value)
        : "a" (value), "m" (*variable)
        : "memory" );
    return value;
}

Looks like it used some special hacks to suppress the compiler? I think that
volatile may bring some drastic effects to ARM platform.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
_______________________________________________
package-review mailing list
[email protected]
https://admin.fedoraproject.org/mailman/listinfo/package-review

Reply via email to