RE: Sqlite building failure using rtems-source-builder

2019-03-31 Thread JunBeom Kim
om Kim Cc: users@rtems.org Subject: Re: Sqlite building failure using rtems-source-builder On Fri, Mar 29, 2019 at 12:57 AM JunBeom Kim wrote: > Because there is file locking problem due to fcntl(F_SETLK) unsupported > feature, DB file access is error. SQLite3 ships with a set of VFS me

Re: Sqlite building failure using rtems-source-builder

2019-03-29 Thread Jonathan Brandmeyer
On Fri, Mar 29, 2019 at 12:57 AM JunBeom Kim wrote: > Because there is file locking problem due to fcntl(F_SETLK) unsupported > feature, DB file access is error. SQLite3 ships with a set of VFS methods that avoid file locking entirely, named "unix-none". There are several methods available to

RE: Sqlite building failure using rtems-source-builder

2019-03-28 Thread JunBeom Kim
al predefine option for resolving this. Best Regards, JunBeom -Original Message- From: Jonathan Brandmeyer Sent: Tuesday, March 26, 2019 11:25 PM To: JunBeom Kim Cc: users@rtems.org Subject: Re: Sqlite building failure using rtems-source-builder My team hasn't gotten to the stage o

Re: Sqlite building failure using rtems-source-builder

2019-03-26 Thread Joel Sherrill
I think the problem is in this command. ../source-builder/sb-set-builder --log=log_sqlite.txt --prefix=~/projects/rtems-5.0/target/rva9-libbsd-19q1/rtems-package --with-tools=/opt/rtems5.0-arm-19q1 --target=realview_pbx_a9_qemu --host=arm-rtems5.0 databases/sqlite From https://docs.rtems.org/bran

Re: Sqlite building failure using rtems-source-builder

2019-03-26 Thread Jonathan Brandmeyer
My team hasn't gotten to the stage of actually using SQLite in the RTEMS environment yet, but it builds just fine. We don't use rtems-source-builder to do it. We are just using the latest stable amalgamation release, supplied by sqlite.org. We build it with the same options that the configure sc

Sqlite building failure using rtems-source-builder

2019-03-26 Thread JunBeom Kim
Dear Sir, I am tring to build Sqlite 3 using rtems-source-builder for ARM target(Realview-A9). I already installed rtems-package in "~/projects/rtems-5.0/target/rva9-libbsd-19q1/rtems-package". Also, rtems toolchain is installed "/opt/rtems5.0-arm-19q1". My host machine is Ubuntu 16.04. M