Morty-debug / buffer

Librerias C dentro de GO

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

compilar codigo en GO y GCC dentro de Windows

set PATH=%PATH%;%CD%\lib
gcc -fPIC ./include/bufftofile.c -shared -o ./lib/libbufftofile.dll
go run main.go

compilar codigo en GO y GCC dentro de Linux

export LD_LIBRARY_PATH=$PWD/lib
gcc -fPIC ./include/bufftofile.c -shared -o ./lib/libbufftofile.so
go run main.go

About

Librerias C dentro de GO


Languages

Language:Go 74.9%Language:C 25.1%