Solved Is there something like bits/stdc++.h ?

Hi,

I'm all but a seasoned programmer.
When trying to compile stegosaurus , which is a LV2/VST/DSSI drum synth, i got this error:
Code:
Compiling ../../delirium_ui/delirium_ui_widget_base.cpp
../../delirium_ui/delirium_ui_widget_base.cpp:3:9: fatal error: 'bits/stdc++.h' file not found
    3 | #include<bits/stdc++.h>
      |         ^~~~~~~~~~~~~~~
1 error generated.
As bits/stdc++.h is a non-standard header file of GNU C++ library, is there something equivalent for FreeBSD or do i need to rewrite the needed part of it for steganosaurus ?

Help appreciated :)
 
LLVM.

But i've found a solution. Some cpp files needs setprecision which is part of iomanip. Compilation is finished after including iomanip in place of bits/stdc++.h...
Part of the solution was found in this gist
GNU people seem to make weird things sometime ;)

Thanks mer and cracauer@
 
  • Like
Reactions: mer
Back
Top