Skip to content

Commit cfedb9b

Browse files
committed
Fix compatibility for old windows
Fixes #362
1 parent 685c54e commit cfedb9b

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ ECA Agent Guide (AGENTS.md)
3131
- Avoid adding too many comments, only add essential or when you think is really important to mention something.
3232
- ECA's protocol specification of client <-> server lives in docs/protocol.md
3333
- If changing ECA config structure, remember to update its docs/config.json
34-
- When adding support to a new feature or fixing a existing github issue, add a entry to Unreleased in CHANGELOG.md if not already there as last entry, be concise like the rest.
34+
- When adding support to a new feature or fixing a existing github issue, add a entry to Unreleased in CHANGELOG.md if not already there as last entry, be concise like the rest, mention the issue number in the end if you know it's related to one.

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Fix native image on Windows not running on older CPUs by enabling `-march=compatibility`. #362
6+
57
## 0.114.0
68

79
- Delete chats older than 7 days on server startup.

build.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"--no-fallback"
8585
"--native-image-info"
8686
"--features=clj_easy.graal_build_time.InitClojureClasses"
87-
(when-not (fs/windows?) "-march=compatibility")
87+
"-march=compatibility"
8888
"-O1"
8989
(or (System/getenv "ECA_XMX")
9090
"-J-Xmx8g")

0 commit comments

Comments
 (0)