-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
230 changed files
with
10,751 additions
and
5,946 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
test.jank | ||
jank-generated.hpp | ||
.jank-repl-history | ||
a.out | ||
.jank-native-repl-history | ||
.jank-repl-history | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
git_root=$(git rev-parse --show-toplevel) | ||
|
||
for i in $(git status | grep -E "modified:" | sed 's/modified:\s*//'); do | ||
"$git_root"/compiler+runtime/build/llvm-install/usr/local/bin/clang-format -i "$i" | ||
echo "formatted" "$i" | ||
done |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
set(FMT_DOC OFF CACHE BOOL "Generate docs") | ||
set(FMT_INSTALL OFF CACHE BOOL "Generate the install target.") | ||
set(CMAKE_CXX_CLANG_TIDY_OLD ${CMAKE_CXX_CLANG_TIDY}) | ||
set(CMAKE_CXX_CLANG_TIDY "") | ||
set(FMT_DOC OFF CACHE BOOL "Generate docs") | ||
set(FMT_INSTALL OFF CACHE BOOL "Generate the install target.") | ||
|
||
add_subdirectory(third-party/fmt) | ||
add_subdirectory(third-party/fmt) | ||
|
||
unset(FMT_DOC) | ||
unset(FMT_INSTALL) | ||
unset(FMT_DOC) | ||
unset(FMT_INSTALL) | ||
set(CMAKE_CXX_CLANG_TIDY ${CMAKE_CXX_CLANG_TIDY_OLD}) |
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,8 +1,11 @@ | ||
set(CMAKE_C_FLAGS_OLD "${CMAKE_C_FLAGS}") | ||
set(CMAKE_CXX_FLAGS_OLD "${CMAKE_CXX_FLAGS}") | ||
set(CMAKE_CXX_CLANG_TIDY_OLD ${CMAKE_CXX_CLANG_TIDY}) | ||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w") | ||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -w") | ||
set(CMAKE_CXX_CLANG_TIDY "") | ||
|
||
add_subdirectory(third-party/libzippp) | ||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS_OLD}") | ||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS_OLD}") | ||
set(CMAKE_CXX_CLANG_TIDY ${CMAKE_CXX_CLANG_TIDY_OLD}) |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#pragma once | ||
|
||
#include <jank/c_api.h> | ||
|
||
jank_object_ptr jank_load_clojure_core_native(); |
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.