[GH-ISSUE #36] Build problem on master + Fedora #29

Closed
opened 2026-05-05 22:02:35 -06:00 by gitea-mirror · 2 comments
Owner

Originally created by @ycollet on GitHub (Feb 28, 2022).
Original GitHub issue: https://github.com/airwindows/airwindows/issues/36

Hello,

I am trying to build airwindows on Fedora and I met an error during compilation:

[  5%] Building CXX object CMakeFiles/Vibrato.dir/src/Vibrato/VibratoProc.cpp.o
/usr/lib64/ccache/g++ -DVibrato_EXPORTS -I/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/include/vstsdk -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -DNDEBUG -fPIC -std=gnu++14 -o CMakeFiles/Vibrato.dir/src/Vibrato/VibratoProc.cpp.o -c /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp
In file included from /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:7:
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/Vibrato.h:30:33: warning: multi-character character constant [-Wmultichar]
   30 | const unsigned long kUniqueId = 'vibr';    //Change this to what the AU identity is!
      |                                 ^~~~~~
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp: In member function 'virtual void Vibrato::processReplacing(float**, float**, VstInt32)':
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:27:51: error: 'fpdL' was not declared in this scope; did you mean 'fpd'?
   27 |   if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
      |                                                   ^~~~
      |                                                   fpd
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:28:51: error: 'fpdR' was not declared in this scope; did you mean 'fpd'?
   28 |   if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
      |                                                   ^~~~
      |                                                   fpd
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:91:3: error: 'fpdL' was not declared in this scope; did you mean 'fpd'?
   91 |   fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
      |   ^~~~
      |   fpd
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:94:3: error: 'fpdR' was not declared in this scope; did you mean 'fpd'?
   94 |   fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
      |   ^~~~
      |   fpd
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:101:3: warning: value computed is not used [-Wunused-value]
  101 |   *in1++;
      |   ^~~~~~
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:102:3: warning: value computed is not used [-Wunused-value]
  102 |   *in2++;
      |   ^~~~~~
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:103:3: warning: value computed is not used [-Wunused-value]
  103 |   *out1++;
      |   ^~~~~~~
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:104:3: warning: value computed is not used [-Wunused-value]
  104 |   *out2++;
      |   ^~~~~~~
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp: In member function 'virtual void Vibrato::processDoubleReplacing(double**, double**, VstInt32)':
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:125:51: error: 'fpdL' was not declared in this scope; did you mean 'fpd'?
  125 |   if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
      |                                                   ^~~~
      |                                                   fpd
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:126:51: error: 'fpdR' was not declared in this scope; did you mean 'fpd'?
  126 |   if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
      |                                                   ^~~~
      |                                                   fpd
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:189:3: error: 'fpdL' was not declared in this scope; did you mean 'fpd'?
  189 |   fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
      |   ^~~~
      |   fpd
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:192:3: error: 'fpdR' was not declared in this scope; did you mean 'fpd'?
  192 |   fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
      |   ^~~~
      |   fpd
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:199:3: warning: value computed is not used [-Wunused-value]
  199 |   *in1++;
      |   ^~~~~~
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:200:3: warning: value computed is not used [-Wunused-value]
  200 |   *in2++;
      |   ^~~~~~
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:201:3: warning: value computed is not used [-Wunused-value]
  201 |   *out1++;
      |   ^~~~~~~
/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:202:3: warning: value computed is not used [-Wunused-value]
  202 |   *out2++;
      |   ^~~~~~~

Originally created by @ycollet on GitHub (Feb 28, 2022). Original GitHub issue: https://github.com/airwindows/airwindows/issues/36 Hello, I am trying to build airwindows on Fedora and I met an error during compilation: ``` [ 5%] Building CXX object CMakeFiles/Vibrato.dir/src/Vibrato/VibratoProc.cpp.o /usr/lib64/ccache/g++ -DVibrato_EXPORTS -I/home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/include/vstsdk -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -DNDEBUG -fPIC -std=gnu++14 -o CMakeFiles/Vibrato.dir/src/Vibrato/VibratoProc.cpp.o -c /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp In file included from /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:7: /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/Vibrato.h:30:33: warning: multi-character character constant [-Wmultichar] 30 | const unsigned long kUniqueId = 'vibr'; //Change this to what the AU identity is! | ^~~~~~ /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp: In member function 'virtual void Vibrato::processReplacing(float**, float**, VstInt32)': /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:27:51: error: 'fpdL' was not declared in this scope; did you mean 'fpd'? 27 | if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17; | ^~~~ | fpd /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:28:51: error: 'fpdR' was not declared in this scope; did you mean 'fpd'? 28 | if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17; | ^~~~ | fpd /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:91:3: error: 'fpdL' was not declared in this scope; did you mean 'fpd'? 91 | fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; | ^~~~ | fpd /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:94:3: error: 'fpdR' was not declared in this scope; did you mean 'fpd'? 94 | fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; | ^~~~ | fpd /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:101:3: warning: value computed is not used [-Wunused-value] 101 | *in1++; | ^~~~~~ /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:102:3: warning: value computed is not used [-Wunused-value] 102 | *in2++; | ^~~~~~ /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:103:3: warning: value computed is not used [-Wunused-value] 103 | *out1++; | ^~~~~~~ /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:104:3: warning: value computed is not used [-Wunused-value] 104 | *out2++; | ^~~~~~~ /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp: In member function 'virtual void Vibrato::processDoubleReplacing(double**, double**, VstInt32)': /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:125:51: error: 'fpdL' was not declared in this scope; did you mean 'fpd'? 125 | if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17; | ^~~~ | fpd /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:126:51: error: 'fpdR' was not declared in this scope; did you mean 'fpd'? 126 | if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17; | ^~~~ | fpd /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:189:3: error: 'fpdL' was not declared in this scope; did you mean 'fpd'? 189 | fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; | ^~~~ | fpd /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:192:3: error: 'fpdR' was not declared in this scope; did you mean 'fpd'? 192 | fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; | ^~~~ | fpd /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:199:3: warning: value computed is not used [-Wunused-value] 199 | *in1++; | ^~~~~~ /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:200:3: warning: value computed is not used [-Wunused-value] 200 | *in2++; | ^~~~~~ /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:201:3: warning: value computed is not used [-Wunused-value] 201 | *out1++; | ^~~~~~~ /home/collette/rpmbuild/BUILD/airwindows/plugins/LinuxVST/src/Vibrato/VibratoProc.cpp:202:3: warning: value computed is not used [-Wunused-value] 202 | *out2++; | ^~~~~~~ ```
Author
Owner

@airwindows commented on GitHub (Feb 28, 2022):

On 2 28, 2022, at 7:17 AM, ycollet @.***> wrote:

Hello,

I am trying to build airwindows on Fedora and I met an error during compilation:

Yes, you’re going to have huge problems until I overhaul the whole codebase. It will eventually be finished. It is under extensive refactoring: consider the whole codebase to be like dailies that are not in working order, the Linux VSTs for download should be unchanged, for now.

Chris
<!-- gh-comment-id:1054278282 --> @airwindows commented on GitHub (Feb 28, 2022): > On 2 28, 2022, at 7:17 AM, ycollet ***@***.***> wrote: > > > Hello, > > I am trying to build airwindows on Fedora and I met an error during compilation: Yes, you’re going to have huge problems until I overhaul the whole codebase. It will eventually be finished. It is under extensive refactoring: consider the whole codebase to be like dailies that are not in working order, the Linux VSTs for download should be unchanged, for now. Chris
Author
Owner

@ycollet commented on GitHub (Mar 23, 2022):

It's fixed now. I close the ticket !

<!-- gh-comment-id:1076837545 --> @ycollet commented on GitHub (Mar 23, 2022): It's fixed now. I close the ticket !
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/airwindows#29
No description provided.