uraimo
uraimo
Yes, the REPL has never worked on ARM (even in 2.x), but that doesn't impact the behaviour of the compiler.
Yup! It makes a lot of sense, doing it now.
Let's leave this long standing issue open too.
Just for my reference, the issue is still there even on the test version of 5.1.2 that includes clang and libicu.
Never tried, but note than a few of the patches will be redundant since they are for Linux systems (something equivalent could be needed in some cases).
`clrex` is available on ARMv6k/v7+ as confirmed [here](http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.kui0100a/armasm_cjacahbf.htm): ``` Architectures This ARM instruction is available in ARMv6K and above. This 32-bit Thumb-2 instruction is available in ARMv7 and above. There...
Temporary workaround: 7903180c4cc6e7f3b099b49cc7291ca3166076c4
`CLREX` should be a thumb2 instruction, so a proper fix would check for `(defined(__arm__) && defined(_ARM_ARCH_7))` or ` defined(__thumb2__)` if it's available.
Since we don't have glibc shims for some of the FD_ function declared in `sys/select.h`, those have been redeclared in `FSWatch.swift`. On Linux, this is the set of defines that...
Hi and thanks for the PR! I'll keep this open and merge it when next_release lands on master (post 5.2).