Skip to content

Commit

Permalink
Add support of ARC architecture (#82)
Browse files Browse the repository at this point in the history
More info about ARC architecture is here: [1] & [2].
We need ARC supported here for many things like:
 - ICU (see [3])
 - Qt5 etc

[1] https://www.synopsys.com/designware-ip/processor-solutions/arc-processors.html
[2] https://en.wikipedia.org/wiki/ARC_(processor)
[3] https://unicode-org.atlassian.net/browse/ICU-20155

Fixes #81
  • Loading branch information
abrodkin authored and floitsch committed Nov 1, 2018
1 parent e67d737 commit eafa625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion double-conversion/utils.h
Expand Up @@ -94,7 +94,7 @@ int main(int argc, char** argv) {
defined(_MIPS_ARCH_MIPS32R2) || \
defined(__AARCH64EL__) || defined(__aarch64__) || defined(__AARCH64EB__) || \
defined(__riscv) || \
defined(__or1k__)
defined(__or1k__) || defined(__arc__)
#define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
#elif defined(__mc68000__) || \
defined(__pnacl__) || defined(__native_client__)
Expand Down

0 comments on commit eafa625

Please sign in to comment.