-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: basic support for compiling source to object files
added cwalk to handle paths cross-platform exposed TCC function to compile to file
- Loading branch information
Showing
8 changed files
with
2,093 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
cjit | ||
*.o | ||
src/embed* | ||
src/assets.* | ||
src/embed_* | ||
.build_done* | ||
dl | ||
cjit.res | ||
cjit.rc | ||
cjit_source | ||
pristine | ||
cjit-demo* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,18 @@ precedence = "aggregate" | |
SPDX-FileCopyrightText = "2024 Dyne.org foundation" | ||
SPDX-License-Identifier = "GPL-3.0-or-later" | ||
|
||
[[annotations]] | ||
path = "src/cwalk.*" | ||
precedence = "aggregate" | ||
SPDX-FileCopyrightText = "2024 Leonard Iklé" | ||
SPDX-License-Identifier = "MIT" | ||
|
||
[[annotations]] | ||
path = "src/array.*" | ||
precedence = "aggregate" | ||
SPDX-FileCopyrightText = "2015-2020 Sun Dro ([email protected])" | ||
SPDX-License-Identifier = "MIT" | ||
|
||
[[annotations]] | ||
path = [".*", ".github/**"] | ||
precedence = "aggregate" | ||
|
@@ -30,25 +42,25 @@ SPDX-License-Identifier = "MIT" | |
[[annotations]] | ||
path = "examples/tinyc.games/res/PixelatedEleganceRegular.ttf" | ||
precedence = "aggregate" | ||
SPDX-FileCopyrightText = " 2024 GGBotNet" | ||
SPDX-FileCopyrightText = "2024 GGBotNet" | ||
SPDX-License-Identifier = "MIT-0" | ||
|
||
[[annotations]] | ||
path = "test/dmon.h" | ||
precedence = "aggregate" | ||
SPDX-FileCopyrightText = " 2019-2023 Sepehr Taghdisian" | ||
SPDX-FileCopyrightText = "2019-2023 Sepehr Taghdisian" | ||
SPDX-License-Identifier = "BSD-2-Clause" | ||
|
||
[[annotations]] | ||
path = "assets/stb/**" | ||
precedence = "aggregate" | ||
SPDX-FileCopyrightText = " 2009-2021 Sean Barrett" | ||
SPDX-FileCopyrightText = "2009-2021 Sean Barrett" | ||
SPDX-License-Identifier = "MIT-0" | ||
|
||
[[annotations]] | ||
path = "assets/win32ports/**" | ||
precedence = "aggregate" | ||
SPDX-FileCopyrightText = " 2019 win32ports" | ||
SPDX-FileCopyrightText = "2019 win32ports" | ||
SPDX-License-Identifier = "MIT-0" | ||
|
||
[[annotations]] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.