7 lines
92 B
Bash
Executable File
7 lines
92 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function main() {
|
|
gcc -no-pie -s gwinwrap_exec_bin.cpp -o gwinwrap
|
|
}
|
|
main;
|