Skip to content

Tags: metaeducation/ren-c

Tags

user-native-test-5

Toggle user-native-test-5's commit message
Set ASM_FLAGS for 32-bit building on Mac

user-native-test-4

Toggle user-native-test-4's commit message
Build 32-bit version binaries correctly

Changing OS_ID is not enough.

user-native-test-3

Toggle user-native-test-3's commit message
Support cross-compiling for windows using cmake

When building with TCC, it needs to be a cross-compiler, and
present as ${CMAKE_CURRENT_BINARY_DIR}/cross-tcc

To compile for 64-bit windows:
$mkdir build
$cd build
$cmake ../make -DR3_OS_ID=0.3.40 -DCMAKE_TOOLCHAIN_FILE=../make/Toolchain-cross-mingw64-linux.cmake

untagged-007b071e967d916c2a62

Toggle untagged-007b071e967d916c2a62's commit message
Fix mold of an Image with length of multiple of 10

If the length of the image is multiple of 10 (e.g. 5x1), mold of it
will be like:

make image! [5x1 #{
RRGGBBRRGGBBRRGGBBRR
GGBBRRGGBBRRGGBBRRGG
BBRRGGBBRRGGBBRRGGBB00
}]

while expecting:

make image! [5x1 #{
RRGGBBRRGGBBRRGGBBRR
GGBBRRGGBBRRGGBBRRGG
BBRRGGBBRRGGBBRRGGBB
}]

The problem is that an extra newline is counted in this case. Only the
newlines between the first and last pixel is needed, if the last pixel is
right at the end of the line, no need to count it here, as it will be
appended later.

atronix-3.0.99

Toggle atronix-3.0.99's commit message
Bump version to 3.0.99

atronix-3.0.91

Toggle atronix-3.0.91's commit message
Bump version for 3.1 beta

atronix-3.0.90

Toggle atronix-3.0.90's commit message
Fix build brokenage caused by ffi merge