Skip to content

Commit 3140505

Browse files
committed
hack
1 parent 4223365 commit 3140505

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@
101101
- `list:setAt` can work with negative indexes, and is now bound checked
102102
- re-enabled the AST optimizer, only used for the main `arkscript` executable (not enabled when embedding arkscript, so that one can grab variables from the VM)
103103
- loops have their own scope: variables created inside a loop won't leak outside it
104+
- upgraded fmtlib to 11.1.3-13
104105

105106
### Removed
106107
- removed unused `NodeType::Closure`

CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,15 @@ elseif (MSVC)
114114
/wd4267 # disable warning about data loss (size_t -> int)
115115
/wd4244 # disable warning about data loss (size_t -> char)
116116
/wd4505 # disable warning about unused static function was deleted
117-
/wd4068) # disable warnings about unknown pragmas.
117+
/wd4068 # disable warnings about unknown pragmas.
118+
/utf-8)
118119
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /STACK:8000000") # set stack size to 8MB
119120
endif ()
120121

121122
# Link libraries
122123

124+
set(FMT_USE_STATIC_LIBS ON)
125+
123126
target_include_directories(ArkReactor
124127
SYSTEM PUBLIC
125128
"${ark_SOURCE_DIR}/lib/picosha2/"

lib/fmt

Submodule fmt updated 189 files

0 commit comments

Comments
 (0)