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

compilation error #228

Open
vaynefox opened this issue Apr 18, 2022 · 8 comments
Open

compilation error #228

vaynefox opened this issue Apr 18, 2022 · 8 comments

Comments

@vaynefox
Copy link

Screenshot_2022-04-19_01-26-45
This always appear whenever I try to compile it.

@LightningV1p3r
Copy link

Same here, tried it on two different machines with the new ubuntu 22.04 release.

@LightningV1p3r
Copy link

I also tested it on a ubuntu 21.10 install where glava is already installed. Same error:

ninja -C build
ninja: Entering directory `build'
[2/19] Compiling C object glava.p/glava-cli_cli.c.o
cc1: warning: command-line option ‘-std=c++11’ is valid for C++/ObjC++ but not for C
[3/19] Compiling C object libglava.so.p/glava_fifo.c.o
../glava/fifo.c: In function ‘entry’:
../glava/fifo.c:81:17: warning: ignoring return value of ‘read’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
81 | read(fd, buf, sizeof(buf));
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
[9/19] Compiling C++ object libglfft.a.p/glfft_glfft_gl_interface.cpp.o
FAILED: libglfft.a.p/glfft_glfft_gl_interface.cpp.o
c++ -Ilibglfft.a.p -I. -I.. -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wnon-virtual-dtor -O2 -DGLAVA_UNIX -DGLAVA_GLX '-DGLAVA_VERSION="v1.6.3-90-g6fc0e32"' '-DSHADER_INSTALL_PATH="/etc/xdg/glava"' '-DGLAVA_RESOURCE_PATH="/usr/share/glava/resources"' -fPIC -MD -MQ libglfft.a.p/glfft_glfft_gl_interface.cpp.o -MF libglfft.a.p/glfft_glfft_gl_interface.cpp.o.d -o libglfft.a.p/glfft_glfft_gl_interface.cpp.o -c ../glfft/glfft_gl_interface.cpp
In file included from ../glfft/glfft_gl_interface.cpp:19:
../glfft/glfft_gl_interface.hpp: In function ‘void glfft_log(const char*, ...)’:
../glfft/glfft_gl_interface.hpp:43:14: error: ‘stdout’ was not declared in this scope
43 | vfprintf(stdout, fmt, l);
| ^~~~~~
../glfft/glfft_gl_interface.hpp:33:1: note: ‘stdout’ is defined in header ‘’; did you forget to ‘#include ’?
32 | #include <error.h>
+++ |+#include
33 | }
../glfft/glfft_gl_interface.hpp:43:5: error: ‘vfprintf’ was not declared in this scope; did you mean ‘vwprintf’?
43 | vfprintf(stdout, fmt, l);
| ^~~~~~~~
| vwprintf
../glfft/glfft_gl_interface.hpp: In function ‘double glfft_time()’:
../glfft/glfft_gl_interface.hpp:54:17: error: ‘stderr’ was not declared in this scope
54 | fprintf(stderr, "clock_gettime(CLOCK_REALTIME, ...): %s\n", strerror(errno));
| ^~~~~~
../glfft/glfft_gl_interface.hpp:54:17: note: ‘stderr’ is defined in header ‘’; did you forget to ‘#include ’?
../glfft/glfft_gl_interface.hpp:54:78: error: ‘errno’ was not declared in this scope
54 | fprintf(stderr, "clock_gettime(CLOCK_REALTIME, ...): %s\n", strerror(errno));
| ^~~~~
../glfft/glfft_gl_interface.hpp:33:1: note: ‘errno’ is defined in header ‘’; did you forget to ‘#include ’?
32 | #include <error.h>
+++ |+#include
33 | }
../glfft/glfft_gl_interface.hpp:54:9: error: ‘fprintf’ was not declared in this scope; did you mean ‘wprintf’?
54 | fprintf(stderr, "clock_gettime(CLOCK_REALTIME, ...): %s\n", strerror(errno));
| ^~~~~~~
| wprintf
../glfft/glfft_gl_interface.cpp: In member function ‘virtual void GLFFT::GLContext::log(const char*, ...)’:
../glfft/glfft_gl_interface.cpp:201:5: error: ‘vsnprintf’ was not declared in this scope; did you mean ‘vswprintf’?
201 | vsnprintf(buffer, sizeof(buffer), fmt, va);
| ^~~~~~~~~
| vswprintf
[12/19] Compiling C++ object libglfft.a.p/glfft_glfft_wisdom.cpp.o
FAILED: libglfft.a.p/glfft_glfft_wisdom.cpp.o
c++ -Ilibglfft.a.p -I. -I.. -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wnon-virtual-dtor -O2 -DGLAVA_UNIX -DGLAVA_GLX '-DGLAVA_VERSION="v1.6.3-90-g6fc0e32"' '-DSHADER_INSTALL_PATH="/etc/xdg/glava"' '-DGLAVA_RESOURCE_PATH="/usr/share/glava/resources"' -fPIC -MD -MQ libglfft.a.p/glfft_glfft_wisdom.cpp.o -MF libglfft.a.p/glfft_glfft_wisdom.cpp.o.d -o libglfft.a.p/glfft_glfft_wisdom.cpp.o -c ../glfft/glfft_wisdom.cpp
../glfft/glfft_wisdom.cpp: In member function ‘std::pair<double, GLFFT::FFTOptions::Performance> GLFFT::FFTWisdom::study(GLFFT::Context*, const GLFFT::WisdomPass&, GLFFT::FFTOptions::Type) const’:
../glfft/glfft_wisdom.cpp:273:23: error: ‘logic_error’ was not declared in this scope
273 | throw logic_error("Invalid input mode.\n");
| ^~~~~~~~~~~
../glfft/glfft_wisdom.cpp:307:23: error: ‘logic_error’ was not declared in this scope
307 | throw logic_error("Invalid output mode.\n");
| ^~~~~~~~~~~
[14/19] Compiling C++ object libglfft.a.p/glfft_glfft.cpp.o
ninja: build stopped: subcommand failed.

@PixelMelt
Copy link

try #218 ?

@ElGamerNovato
Copy link

I'm having the same error :c

@shreyasSarve
Copy link

any fix ?

@shreyasSarve
Copy link

i gave up and just used https://github.com/karlstav/cava
use #185

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

No branches or pull requests

6 participants
@PixelMelt @shreyasSarve @vaynefox @LightningV1p3r @ElGamerNovato and others