mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-24 10:41:35 +01:00
5 lines
180 B
Bash
Executable File
5 lines
180 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
g++ -O3 -Wall -shared -std=c++11 -fPIC class_test.cpp -o class_test`python3-config --extension-suffix` -I /usr/include/python3.6m
|
|
./class_test_main.py
|