Re: Getting issues in cpp build

2023-02-16 Thread Shaheer Ahmad
There was a typo in my previous reply. I did not* specify CXX_STANDARD anywhere. On Thu, Feb 16, 2023 at 10:03 PM Shaheer Ahmad wrote: > I am giving the “cmake –build .” command within “arrow/cpp” directory. I > did specify CXX_STANDARD anywhere. Could you please guide me on that? > > On Thu,

Re: Getting issues in cpp build

2023-02-16 Thread Jacob Wujciak
Could it be an issue with an old version of c++.exe not supporting c++17? Shaheer could you also post the cmake prelude where it displays compiler version etc.? Shaheer Ahmad schrieb am Do., 16. Feb. 2023, 18:04: > I am giving the “cmake –build .” command within “arrow/cpp” directory. I > did

Re: Getting issues in cpp build

2023-02-16 Thread Shaheer Ahmad
I am giving the “cmake –build .” command within “arrow/cpp” directory. I did specify CXX_STANDARD anywhere. Could you please guide me on that? On Thu, Feb 16, 2023 at 9:59 PM Weston Pace wrote: > It appears you are tryingt o build with `-std=c++1z`. Arrow-C++ requires > C++17 (the header is

Re: Getting issues in cpp build

2023-02-16 Thread Weston Pace
It appears you are tryingt o build with `-std=c++1z`. Arrow-C++ requires C++17 (the header is only present in C++17 and greater). What command are you using to run cmake? Are you specifying CXX_STANDARD anywhere? On Wed, Feb 15, 2023 at 6:18 PM Shaheer Ahmad wrote: > [1/249] Building CXX obje

Re: Getting issues in cpp build

2023-02-15 Thread Shaheer Ahmad
[1/249] Building CXX object src/arrow/CMakeFiles/arrow_shared.dir/array/array_binary.cc.obj FAILED: src/arrow/CMakeFiles/arrow_shared.dir/array/array_binary.cc.obj C:\MinGW\bin\c++.exe -DARROW_EXPORTING -DARROW_EXTRA_ERROR_CONTEXT -DARROW_HAVE_RUNTIME_AVX2 -DARROW_HAVE_RUNTIME_BMI2 -DARROW_HAVE_RUN

Re: Getting issues in cpp build

2023-02-15 Thread Bryce Mecum
Hi Shaheer, welcome! I think the mailing list may have had an issue with your attachment. If the output is short, could you reply with it here? If it's more than 10-20 lines, you might put it in a Gist [1] or similar type of pastebin and reply with a link. [1] https://gist.github.com/

Getting issues in cpp build

2023-02-15 Thread Shaheer Ahmad
I am a beginner in opensource contributions and I am following the guide to build the arrow’s source code. Following the steps, I installed the requirements by vcpkg, install cmake and ninja-debug to build using a preset and finally when I passed the command “cmake –build .” within “arrow/cpp” dire