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

mysql compile file on RockyLinux 8 #24121

Open
kbkpbot opened this issue Apr 3, 2025 · 4 comments
Open

mysql compile file on RockyLinux 8 #24121

kbkpbot opened this issue Apr 3, 2025 · 4 comments
Assignees
Labels
Bug This tag is applied to issues which reports bugs. Build V build error on any OS/CPU architecture. Modules: db Bugs/feature requests, that are related to the `db.*` modules.

Comments

@kbkpbot
Copy link
Contributor

kbkpbot commented Apr 3, 2025

Describe the bug

Try to compile mysql code on RockyLinux 8 will fail.

Reproduction Steps

goto vlib/db/mysql

v mysql_test.v -showcc -keepc

Expected Behavior

compile ok

Current Behavior

# v mysql_test.v -showcc -keepc
> C compiler cmd: '/home/github/lang/v/thirdparty/tcc/tcc.exe' '@/tmp/v_0/mysql_test.tmp.c.rsp'
> C compiler response file "/tmp/v_0/mysql_test.tmp.c.rsp":
  -fwrapv -o "/home/github/lang/v/vlib/db/mysql/mysql_test" -D GC_THREADS=1 -D GC_BUILTIN_ATOMIC=1 -I "/home/github/lang/v/thirdparty/libgc/include" -I "/usr/include/mysql -m64" -I "/usr/include" -L "/usr/lib64/mysql" -L "/usr/lib64" "/tmp/v_0/mysql_test.tmp.c" -std=gnu99 -D_DEFAULT_SOURCE -bt25 "/home/github/lang/v/thirdparty/tcc/lib/libgc.a" -ldl -lpthread -lmysqlclient -lssl -lcrypto
> C compiler cmd: 'cc' '@/tmp/v_0/mysql_test.tmp.c.rsp'
> C compiler response file "/tmp/v_0/mysql_test.tmp.c.rsp":
  -fwrapv -o '/home/github/lang/v/vlib/db/mysql/mysql_test' -D GC_THREADS=1 -D GC_BUILTIN_ATOMIC=1 -I "/home/github/lang/v/thirdparty/libgc/include" -I "/usr/include/mysql -m64" -I "/usr/include" -L "/usr/lib64/mysql" -L "/usr/lib64" "/tmp/v_0/mysql_test.tmp.c" -std=gnu99 -D_DEFAULT_SOURCE "/home/github/lang/v/thirdparty/tcc/lib/libgc.a" -ldl -lpthread -lmysqlclient -lssl -lcrypto
builder error: Header file <mysql.h>, needed for module `db.mysql` was not found. Please install the libmysqlclient-dev development headers.

Possible Solution

remove -m64 from compile flags.

Additional Information/Context

No response

V version

V 0.4.10 a298fb8.a298fb8

Environment details (OS name and version, etc.)

V full version V 0.4.10 a298fb8.a298fb8
OS linux, "Rocky Linux release 8.10 (Green Obsidian)"
Processor 40 cpus, 64bit, little endian, Intel(R) Xeon(R) CPU E5-2660 v3 @ 2.60GHz
Memory 49.86GB/62.29GB
V executable /home/github/lang/v/v
V last modified time 2025-04-03 08:16:12
V home dir OK, value: /home/github/lang/v
VMODULES OK, value: /root/.vmodules
VTMP OK, value: /tmp/v_0
Current working dir OK, value: /home/github/lang/v/vlib/db/mysql
Git version git version 2.43.5
V git status weekly.2025.14-dirty
.git/config present true
cc version cc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-22)
gcc version gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-22)
clang version N/A
tcc version tcc version 0.9.28rc 2025-02-13 HEAD@f8bd136d (x86_64 Linux)
tcc git status thirdparty-linux-amd64 696c1d84
emcc version N/A
glibc version ldd (GNU libc) 2.28

Note

You can use the 👍 reaction to increase the issue's priority for developers.

Please note that only the 👍 reaction to the issue itself counts as a vote.
Other reactions and those to comments will not be taken into account.

@kbkpbot kbkpbot added the Bug This tag is applied to issues which reports bugs. label Apr 3, 2025
Copy link

Connected to Huly®: V_0.6-22512

@felipensp
Copy link
Member

felipensp commented Apr 3, 2025

How have you passed as CFLAGS?

It seems related to:

'-m32', '-m64' {
				res.m64 = arg[2] == `6`
				res.cflags += ' ${arg}'
			}

@felipensp felipensp added Build V build error on any OS/CPU architecture. Modules: db Bugs/feature requests, that are related to the `db.*` modules. labels Apr 3, 2025
@kbkpbot
Copy link
Contributor Author

kbkpbot commented Apr 3, 2025

[root@idm1 mysql]# echo $CFLAGS

[root@idm1 mysql]# v mysql_test.v -showcc -keepc
> C compiler cmd: '/home/github/lang/v/thirdparty/tcc/tcc.exe' '@/tmp/v_0/mysql_test.tmp.c.rsp'
> C compiler response file "/tmp/v_0/mysql_test.tmp.c.rsp":
  -fwrapv -o "/home/github/lang/v/vlib/db/mysql/mysql_test" -D GC_THREADS=1 -D GC_BUILTIN_ATOMIC=1 -I "/home/github/lang/v/thirdparty/libgc/include" -I "/usr/include/mysql -m64" -I "/usr/include" -L "/usr/lib64/mysql" -L "/usr/lib64" "/tmp/v_0/mysql_test.tmp.c" -std=gnu99 -D_DEFAULT_SOURCE -bt25 "/home/github/lang/v/thirdparty/tcc/lib/libgc.a" -ldl -lpthread -lmysqlclient -lssl -lcrypto
> C compiler cmd: 'cc' '@/tmp/v_0/mysql_test.tmp.c.rsp'
> C compiler response file "/tmp/v_0/mysql_test.tmp.c.rsp":
  -fwrapv -o '/home/github/lang/v/vlib/db/mysql/mysql_test' -D GC_THREADS=1 -D GC_BUILTIN_ATOMIC=1 -I "/home/github/lang/v/thirdparty/libgc/include" -I "/usr/include/mysql -m64" -I "/usr/include" -L "/usr/lib64/mysql" -L "/usr/lib64" "/tmp/v_0/mysql_test.tmp.c" -std=gnu99 -D_DEFAULT_SOURCE "/home/github/lang/v/thirdparty/tcc/lib/libgc.a" -ldl -lpthread -lmysqlclient -lssl -lcrypto
builder error: Header file <mysql.h>, needed for module `db.mysql` was not found. Please install the libmysqlclient-dev development headers.

CFLAGS not set

@kbkpbot
Copy link
Contributor Author

kbkpbot commented Apr 3, 2025

It seems the pkgconfig has some bug:

[root@idm1 bin]# ./pkgconfig -c mysqlclient
-I/usr/include/mysql -m64 -I/usr/include
[root@idm1 bin]# pwd
/home/github/lang/v/vlib/v/pkgconfig/bin

system pkg-config get the following result:

[root@idm1 bin]# pkg-config --cflags mysqlclient
-I/usr/include/mysql -m64
[root@idm1 bin]#

@kbkpbot kbkpbot self-assigned this Apr 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug This tag is applied to issues which reports bugs. Build V build error on any OS/CPU architecture. Modules: db Bugs/feature requests, that are related to the `db.*` modules.
Projects
None yet
Development

No branches or pull requests

2 participants