westonpace commented on issue #34689:
URL: https://github.com/apache/arrow/issues/34689#issuecomment-1538739415
`address 0x7f44b08be647, cause 'illegal operand'` typically means that its
trying to use a vectorized instruction that is not available on the machine.
We've encountered issues of this sort on mac before.
I know it is a pain but if there is anyway you could produce a core dump and
give it to us that will help us narrow down which instruction it's trying to
call. Alternatively, if you could run in gdb and intercept the crash you can
figure out which operation is being called that way too, but that might be
trickier than generating a core dump. I often do this by putting my R code in
a script and then typing...
```
$ R -d gdb
...
(gdb) run
...
> source("/tmp/script.R")
...
Thread 1 "R" received signal...
69 ../sysdeps/unix/sysv/linux/select.c: No such file or directory.
(gdb) disassemble
Dump of assembler code for function __GI___select:
0x00007ffff771b690 <+0>: endbr64
```
Do you get the same error writing a different format (not CSV)?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]