Vedant Nimje
Vedant Nimje
So I tried to reproduce the issue, and as expected, by running the above mentioned commands, no error message is thrown for the failing `fopen()` ``` #include int main() {...
Oh, right. These lines are missing from `fopen-test.wat` ``` (import "env" "__syscall_openat" (func (;0;) (type 7))) (import "env" "__syscall_fcntl64" (func (;1;) (type 1))) (import "env" "__syscall_ioctl" (func (;2;) (type 1)))...
Hello @SAtacker , is this issue open for anyone to work on, or only Shanmukh-C is supposed to work on it? I have decent experience with CMakeLists.txt And for testing...
> Yes, you can definitely work on this! Seems like you have already looked into it. (We have plenty of things to work on so you folks don’t have to...
Update: I have added the `HPX_WITH_FETCH_HWLOC` option [here](https://github.com/vrnimje/hpx-fork/tree/cmake_options), and is working perfectly for Linux and MacOS. Test for [Linux](https://github.com/vrnimje/hpx-fork/actions/workflows/linux_debug_fetch_hwloc.yml) & [MacOS](https://github.com/vrnimje/hpx-fork/actions/workflows/macos_debug_fetch_hwloc.yml) In Windows, it builds correctly but the tests fail:...
Hello @SAtacker , I have tried adding the `HPX_WITH_FETCH_BOOST` option, and it is compiling for Linux and Windows, but in macOS the `find_package` call is not able to find Boost.Context...
> https://github.com/vrnimje/hpx-fork/blob/48d422f5b2f1eee6dd2497f728e0383fc70fbe5d/cmake/HPX_SetupBoost.cmake#L152 you have downloaded boost 1.84 and trying to find 1.81 which is one problem but not necessary to cause the error. https://github.com/SAtacker/hpx-template/blob/main/CMakeLists.txt works for macOS too. I have...
Update: I have added the Boost Fetch option as well, and it is building successfully for [Linux](https://github.com/vrnimje/hpx-fork/actions/runs/7372253089/job/20060404597) and [Windows](https://github.com/vrnimje/hpx-fork/actions/runs/7372253088/job/20060404600) In macOS, the `unit tests` fail to build, due to following...
Fixed the error Caused due to cmake build type by default being set to Release Just had to add `-DCMAKE_BUILD_TYPE=Debug` in the workflow Builds on macOS successfully: [build](https://github.com/vrnimje/hpx-fork/actions/runs/7393619943/job/20113818437)
@SAtacker The `HPX_WITH_FETCH_BOOST` option is also implemented, so should we proceed with the PR?