Skip to content

Commit

Permalink
include/sora/fix_cuda_noinline_macro_error.h を追加する
Browse files Browse the repository at this point in the history
  • Loading branch information
enm10k committed Jan 19, 2024
1 parent ff87a14 commit 82de38c
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 11 deletions.
22 changes: 22 additions & 0 deletions include/sora/fix_cuda_noinline_macro_error.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
## 背景
WebRTC を M121 に更新した際に以下のビルド・エラーが発生した
```
error: use of undeclared identifier 'noinline'; did you mean 'inline'
```
WebRTC に含まれる libcxx のバージョンが更新されたことが原因だと思われる
## 対応
同様の問題を解消したと思われる LLVM の [PR](https://github.com/llvm/llvm-project-release-prs/pull/698) を調査したところ、 PR で追加されたファイルは存在するにも関わらず、問題が継続して発生していることがわかった
(libcxx に bits/basic_string.h が含まれておらず、 cuda_wrappers 以下のファイルがインクルードされていないようだった)
上記 PR を参考に、ファイルを直接修正したところエラーが解消したため、このヘッダー・ファイルをエラーが発生する箇所でインクルードすることにした
オリジナルのパッチには push_macro や pop_macro が含まれているが、省いても問題が無かったため省略している
*/

#undef __noinline__
5 changes: 3 additions & 2 deletions include/sora/hwenc_nvcodec/nvcodec_decoder_cuda.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@

#include <memory>

// https://github.com/llvm/llvm-project-release-prs/pull/698/files
#undef __noinline__
// clang-format off
#include "sora/fix_cuda_noinline_macro_error.h"
#include <string>
// clang-format on

#include "sora/cuda_context.h"

Expand Down
5 changes: 3 additions & 2 deletions third_party/NvCodec/NvCodec/NvDecoder/NvDecoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
#include <chrono>
#include <cmath>

// https://github.com/llvm/llvm-project-release-prs/pull/698/files
#undef __noinline__
// clang-format off
#include "sora/fix_cuda_noinline_macro_error.h"
#include <iostream>
// clang-format on

#include "NvDecoder/NvDecoder.h"
#include "sora/dyn/cuda.h"
Expand Down
7 changes: 4 additions & 3 deletions third_party/NvCodec/NvCodec/NvDecoder/NvDecoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
#include <stdint.h>
#include <string.h>

// https://github.com/llvm/llvm-project-release-prs/pull/698/files
#undef __noinline__
#include <iostream>
// clang-format off
#include "sora/fix_cuda_noinline_macro_error.h"
#include <string>
// clang-format on

#include <map>
#include <mutex>
Expand Down
5 changes: 3 additions & 2 deletions third_party/NvCodec/NvCodec/NvEncoder/NvEncoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
#include <stdint.h>
#include <string.h>

// https://github.com/llvm/llvm-project-release-prs/pull/698/files
#undef __noinline__
// clang-format off
#include "sora/fix_cuda_noinline_macro_error.h"
#include <iostream>
// clang-format on

#include <mutex>
#include <sstream>
Expand Down
5 changes: 3 additions & 2 deletions third_party/NvCodec/NvCodec/NvEncoder/NvEncoderCuda.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
#include <cuda.h>
#include <stdint.h>

// https://github.com/llvm/llvm-project-release-prs/pull/698/files
#undef __noinline__
// clang-format off
#include "sora/fix_cuda_noinline_macro_error.h"
#include <mutex>
// clang-format on

#include <vector>
#include "NvEncoder.h"
Expand Down

0 comments on commit 82de38c

Please sign in to comment.