Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suppress error in TBB to make build failure for GCC 12 and above #1440

Merged
merged 2 commits into from
May 16, 2023

Conversation

torwig
Copy link
Contributor

@torwig torwig commented May 15, 2023

Recently, a new build error occurred on my Fedora 37 (perhaps due to the sudo dnf update):

In file included from /usr/include/c++/12/atomic:41,
                 from /home/yaroslav/programming/kvrocks/build/_deps/tbb-src/src/tbb/../../include/oneapi/tbb/detail/_utils.h:22,
                 from /home/yaroslav/programming/kvrocks/build/_deps/tbb-src/src/tbb/task_dispatcher.h:20,
                 from /home/yaroslav/programming/kvrocks/build/_deps/tbb-src/src/tbb/arena.cpp:17:
In member function ‘void std::__atomic_base<_IntTp>::store(__int_type, std::memory_order) [with _ITp = bool]’,
    inlined from ‘void std::atomic<bool>::store(bool, std::memory_order)’ at /usr/include/c++/12/atomic:104:20,
    inlined from ‘void tbb::detail::r1::concurrent_monitor_base<Context>::notify_one_relaxed() [with Context = long unsigned int]’ at /home/yaroslav/programming/kvrocks/build/_deps/tbb-src/src/tbb/concurrent_monitor.h:293:53:
/usr/include/c++/12/bits/atomic_base.h:464:25: error: ‘void __atomic_store_1(volatile void*, unsigned char, int)’ writing 1 byte into a region of size 0 overflows the destination [-Werror=stringop-overflow=]
  464 |         __atomic_store_n(&_M_i, __i, int(__m));
      |         ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
compilation terminated due to -Wfatal-errors.
cc1plus: all warnings being treated as errors
make[2]: *** [_deps/tbb-build/src/tbb/CMakeFiles/tbb.dir/build.make:104: _deps/tbb-build/src/tbb/CMakeFiles/tbb.dir/arena.cpp.o] Error 1
make[2]: *** Waiting for unfinished jobs....
cp include/jemalloc/internal/private_namespace.gen.h include/jemalloc/internal/private_namespace.h
make[1]: *** [CMakeFiles/Makefile2:1949: _deps/tbb-build/src/tbb/CMakeFiles/tbb.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....

Thanks to @PragmaTwice for the solution he provided here: Oneflow-Inc/oneflow#10236.

I've tried to add the flag in CMakeLists.txt but failed so I added it in TBB-related .cmake-file.

@torwig torwig requested a review from PragmaTwice May 15, 2023 12:53
@infdahai
Copy link
Contributor

I also encountered this.

Copy link
Member

@PragmaTwice PragmaTwice left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.

BTW it is so hilarious to me that you can find my commit in another project 🤣

@PragmaTwice PragmaTwice changed the title Suppress error in TBB to make build failure for GCCv12 and above Suppress error in TBB to make build failure for GCC 12 and above May 16, 2023
@PragmaTwice PragmaTwice merged commit 015ab4a into apache:unstable May 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants