File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ import { Transpiler } from './transpiler'
99
1010const baseDir = path . normalize ( path . dirname ( process . argv [ 1 ] ) + '/../../..' )
1111
12- const dir = `${ baseDir } /server /temp-files`
12+ const dir = `${ baseDir } /lang /temp-files`
1313const cRuntimeH = `${ baseDir } /microcontroller/core/include/c-runtime.h`
1414const cRuntimeC = `${ baseDir } /microcontroller/core/src/c-runtime.c`
1515const prologCcode = `#include "${ cRuntimeH } "\n`
16- const shellBuiltins = `${ baseDir } /server /src/transpiler/shell-builtins`
16+ const shellBuiltins = `${ baseDir } /lang /src/transpiler/shell-builtins`
1717
1818class Compiler extends Transpiler {
1919 libs : string
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ import { ChildProcessWithoutNullStreams } from 'node:child_process'
1111
1212const baseDir = path . normalize ( path . dirname ( process . argv [ 1 ] ) + '/../../..' )
1313
14- const dir = `${ baseDir } /server /temp-files`
14+ const dir = `${ baseDir } /lang /temp-files`
1515const cRuntimeH = `${ baseDir } /microcontroller/core/include/c-runtime.h`
1616const cRuntimeC = `${ baseDir } /microcontroller/core/src/c-runtime.c`
1717const prologCcode = `#include "${ cRuntimeH } "\n`
18- const shellBuiltins = `${ baseDir } /server /src/transpiler/shell-builtins`
18+ const shellBuiltins = `${ baseDir } /lang /src/transpiler/shell-builtins`
1919
20- const shellC = `${ baseDir } /server /src/transpiler/shell.c`
20+ const shellC = `${ baseDir } /lang /src/transpiler/shell.c`
2121
2222class CodeBuffer {
2323 private buffer : string = ''
You can’t perform that action at this time.
0 commit comments