1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

docs: call_v_from_c example (#15844)

This commit is contained in:
Nicolas VENTER 2022-09-25 21:52:40 +02:00 committed by GitHub
parent 7f23abbf8c
commit 50820105a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 95 additions and 1 deletions

View File

@ -142,6 +142,12 @@ pub fn (mut ts TestSession) print_messages() {
pub fn new_test_session(_vargs string, will_compile bool) TestSession {
mut skip_files := []string{}
// Skip the call_v_from_c files. They need special instructions for compilation.
// Check the README.md for detailed information.
skip_files << 'examples/call_v_from_c/v_test_print.v'
skip_files << 'examples/call_v_from_c/v_test_math.v'
if will_compile {
$if msvc {
skip_files << 'vlib/v/tests/const_comptime_eval_before_vinit_test.v' // _constructor used

View File

@ -115,6 +115,7 @@ To do so, run the command `v up`.
* [sizeof and __offsetof](#sizeof-and-__offsetof)
* [Calling C from V](#calling-c-from-v)
* [Calling V from C](#calling-v-from-c)
* [Export to shared library](#export-to-shared-library)
* [Atomics](#atomics)
* [Global Variables](#global-variables)
* [Debugging](#debugging)
@ -5007,7 +5008,13 @@ fn main() {
## Calling V from C
Since V can compile to C, calling V code from C is very easy.
Since V can compile to C, calling V code from C is very easy, once you know how.
Use `v -o file.c your_file.v` to generate a C file, corresponding to the V code.
More details in [call_v_from_c example](../examples/call_v_from_c).
## Export to shared library
By default all V functions have the following naming scheme in C: `[module name]__[fn_name]`.

2
examples/call_v_from_c/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
# Ignore the generated C files in this directory
*.c

View File

@ -0,0 +1,39 @@
## A simple example to show how to call a function written in v from c
### Compile as a shared library
#### On Linux:
Step 1: Compile the v code to a shared library using `v -cc gcc -shared v_test_print.v` or
`v -cc gcc -shared v_test_math.v`.
Step 2: Compile the c file using `gcc test_print.c v_test_print.so -o test_print` or
`gcc test_math.c v_test_math.so -o test_math`.
Step 3: Run the compiled c file using `LD_LIBRARY_PATH=. ./test_print` or
`LD_LIBRARY_PATH=. ./test_math`.
#### On Windows:
Step 1: Compile the v code to a shared library using `v -cc gcc -shared v_test_print.v` or
`v -cc gcc -shared v_test_math.v`.
Step 2: Compile the c file using `gcc test_print.c v_test_print.dll -o test_print.exe` or
`gcc test_math.c v_test_math.dll -o test_math.exe`.
Step 3: Run the compiled c file using `test_print.exe` or `test_math.exe`.
### Compile as a c file
***Requirements: `libgc` must be installed***
Step 1: Compile the v code to a shared library using
`v -shared -cc gcc -o v_test_print.c v_test_print.v` or
`v -shared -cc gcc -o v_test_math.c v_test_math.v`.
*Specifying the output with a `.c` extension will generate the corresponding C source file.*
Step 2: Compile the c file using `gcc test_print.c v_test_print.c -o test_print -lgc` or
`gcc test_math.c v_test_math.c -o test_math -lgc -lm`.
Step 3: Run the compiled c file using `./test_print` or `./test_math`.

View File

@ -0,0 +1,14 @@
#include <stdio.h>
extern int square(int i);
extern double sqrt_of_sum_of_squares(double x, double y);
int main()
{
int i = 10;
printf("square(%d) = %d\n", i, square(i));
double x=0.9;
double y=1.2;
printf("sqrt_of_sum_of_squares(%f, %f) = %f\n", x, y, sqrt_of_sum_of_squares(x, y));
}

View File

@ -0,0 +1,7 @@
extern void foo(const char* s);
int main()
{
foo("hello");
foo("bye");
}

View File

@ -0,0 +1,13 @@
module test_math
import math
[export: 'square']
fn calculate_square(i int) int {
return i * i
}
[export: 'sqrt_of_sum_of_squares']
fn calculate_sqrt_of_sum_of_squares(x f64, y f64) f64 {
return math.sqrt(x * x + y * y)
}

View File

@ -0,0 +1,6 @@
module test_print
[export: 'foo']
fn show_foo(s &char) {
println(unsafe { cstring_to_vstring(s) })
}