Skip to content

Commit 98cbd37

Browse files
committed
Use GCC and more recent NodeJS
Clang has problems compiling some newer alignment features
1 parent fc0ed56 commit 98cbd37

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

compiler/shared/test/diff-ir/cpp/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CXX := clang++
1+
CXX := g++
22
CFLAGS := $(CFLAGS) -O3 -Wall -Wextra -std=c++20 -I. -Wno-inconsistent-missing-override
33
LDFLAGS := $(LDFLAGS) -lmimalloc -lgmp
44
SRC :=

flake.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@
2121
devShells.default = mkShell {
2222
buildInputs = [
2323
clang
24+
gcc
2425
gnumake
2526
boost
2627
gmp
2728
mimalloc
2829
sbt
29-
nodejs_18
30+
nodejs_22
3031
];
3132
};
3233
});

0 commit comments

Comments
 (0)