Hi, I am trying to understand why Nim compiler thinks that my windows CPU is 32 
bits.

I ran into this while trying to sue sqlite where the smallest reproducible 
error would be:
    
    
    import db_sqlite
    
    var db = open(connection="test.db", user="test", password="",
                  database="test")
    
    
    Run

and the error of the compiler is `could not load: sqlite3_32.dll`. I did try to 
understand if this was a path problem but the dll are correct so I suppose it 
is due to the fact that the library selected is the wrong one and it should try 
to load `sqlite3_64.dll`.

in fact if I run `echo hostCPU` the result is `i386` and I see from source that 
it is due to compiler magic.

My Windiws system instead thinks that my cpu is this one: 
`https://en.wikichip.org/wiki/intel/core_i5/i5-8350u`

Reply via email to