Skip to content
Snippets Groups Projects
Commit a2e589a1 authored by Erik de Castro Lopo's avatar Erik de Castro Lopo Committed by pcapriotti
Browse files

Reduce the likelihood of x64/x86-64 changes breaking the build on other arches (#7083).

Code that needs to differentiate between i386 and x86-64 should now
be written as if x86-64 is the default and i386 is the special case.
Eg:

    # if i386_TARGET_ARCH
    someFuncion = .....
    # else
    someFuncion = .....
    # endif

MERGED from commit 2f7c5785
parent d2360a00
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment