Dan Brown
Dan Brown
Hi- I think it might be possible to simulate the limitations of older processors by changing some of the compiler flags. I am only guessing here, but removing some of...
Sure. I needed to add a ".txt" to config.mk for github to accept it as an attachment. [config.log](https://github.com/liquidaty/zsv/files/8973280/config.log) [config.mk.txt](https://github.com/liquidaty/zsv/files/8973283/config.mk.txt) [config.mk.log](https://github.com/liquidaty/zsv/files/8973294/config.mk.log)
I see two errors when running that: ``` gcc -pipe -ffunction-sections -fdata-sections -fpic -std=gnu11 -O3 -DNDEBUG -Wno-gnu-statement-expression -Wshadow -Wall -Wextra -Wno-missing-braces -pedantic -DSTDC_HEADERS -D_GNU_SOURCE -ftree-vectorize -fvisibility=hidden -I/usr/local/include -mavx2 -DZSV_EXTRAS -DNO_MEMMEM...
Same result. [config.mk.txt](https://github.com/liquidaty/zsv/files/8973836/config.mk.txt) [config.mk.log](https://github.com/liquidaty/zsv/files/8973838/config.mk.log)
``` $ cat /proc/cpuinfo processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 58 model name : Intel(R) Core(TM) i7-3720QM CPU @ 2.60GHz stepping : 9 microcode...
I got the same result with that change. I removed/disabled some other CFLAGS and that seems to have got it to compile successfully with "sudo make install". See the attached...
Also you may want to look at some of the SIMD methods for parsing CSV described here: https://news.ycombinator.com/item?id=29439403
Hi, sure here is the config file: [config.mk.txt](https://github.com/liquidaty/zsv/files/8984005/config.mk.txt) Thanks for clarifying. I am not familiar with abnormal quoting behavior. I assume that means data that does not conform with [RFC...
Good catch, thanks. csvquote probably is not a good option for transforming csv to tsv. The reason why is that in the original csv version of the file, fields with...
In case it's helpful, handling delimiters inside fields is exactly what [csvquote](https://github.com/dbro/csvquote) does. Feel free to reuse that code in future versions of miller.