-
Notifications
You must be signed in to change notification settings - Fork 63
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
make: /usr/lib64/ccache/clang: No such file or directory (oracle linux 9) #41
Comments
make |
What about. See PR #43 diff --git a/src/pg_amqp.c b/src/pg_amqp.c
index 1e091ac..2bc03b5 100644
--- a/src/pg_amqp.c
+++ b/src/pg_amqp.c
@@ -137,7 +137,7 @@ void _PG_init() {
}
static struct brokerstate *
-local_amqp_get_a_bs(broker_id) {
+local_amqp_get_a_bs(int broker_id) {
struct brokerstate *bs;
for(bs = HEAD_BS; bs; bs = bs->next) {
if(bs->broker_id == broker_id) return bs;
@@ -149,7 +149,7 @@ local_amqp_get_a_bs(broker_id) {
return bs;
}
static struct brokerstate *
-local_amqp_get_bs(broker_id) {
+local_amqp_get_bs(int broker_id) {
char sql[1024];
char host_copy[300] = "";
int tries = 0;
@@ -236,7 +236,7 @@ local_amqp_get_bs(broker_id) {
return bs;
}
static void
-local_amqp_disconnect(broker_id) {
+local_amqp_disconnect(int broker_id) {
struct brokerstate *bs = local_amqp_get_a_bs(broker_id);
local_amqp_disconnect_bs(bs);
} |
make
/usr/lib64/ccache/clang -Wno-ignored-attributes -fno-strict-aliasing -fwrapv -Xclang -no-opaque-pointers -Wno-unused-command-line-argument -Wno-compound-token-split-by-macro -Wno-deprecated-non-prototype -O2 -I. -I./ -I/usr/pgsql-15/include/server -I/usr/pgsql-15/include/internal -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -flto=thin -emit-llvm -c -o src/pg_amqp.bc src/pg_amqp.c
make: /usr/lib64/ccache/clang: No such file or directory
make: *** [/usr/pgsql-15/lib/pgxs/src/makefiles/../../src/Makefile.global:1081: src/pg_amqp.bc] Error 127
The text was updated successfully, but these errors were encountered: