this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

revert build janet

nesbox 6815ccc7 6ceed4df

+11 -7
+1 -1
.github/workflows/build.yml
··· 685 685 runs-on: ubuntu-latest 686 686 strategy: 687 687 matrix: 688 - script: [lua, moon, fennel, ruby, js, wren, squirrel, wasm, scheme] 688 + script: [lua, moon, fennel, ruby, js, wren, squirrel, wasm, scheme, janet] 689 689 690 690 steps: 691 691 - name: Download Windows XP artifact
+9 -3
CMakeLists.txt
··· 97 97 98 98 if (N3DS) 99 99 set(BUILD_SDL off) 100 - add_compile_definitions(S7_N3DS=1) 101 100 endif() 102 101 103 102 if (BAREMETALPI) 104 103 set(BUILD_SDL OFF) 105 104 set(BUILD_DEMO_CARTS OFF) 106 - add_compile_definitions(S7_BAREMETALPI=1) 107 105 endif() 108 106 109 107 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Dd_m3LogOutput=0") ··· 355 353 set_target_properties(scheme PROPERTIES LINKER_LANGUAGE CXX) 356 354 target_include_directories(scheme PUBLIC ${SCHEME_DIR}) 357 355 356 + if (N3DS) 357 + target_compile_definitions(scheme PRIVATE S7_N3DS) 358 + endif() 359 + 360 + if (BAREMETALPI) 361 + target_compile_definitions(scheme PRIVATE S7_BAREMETALPI) 362 + endif() 363 + 358 364 ################################ 359 365 # SQUIRREL 360 366 ################################ ··· 426 432 # Janet 427 433 ################################ 428 434 429 - set(BUILD_WITH_JANET_DEFAULT FALSE) 435 + set(BUILD_WITH_JANET_DEFAULT TRUE) 430 436 431 437 option(BUILD_WITH_JANET "Janet Enabled" ${BUILD_WITH_JANET_DEFAULT}) 432 438 message("BUILD_WITH_JANET: ${BUILD_WITH_JANET}")
+1 -3
build/baremetalpi/Makefile
··· 34 34 $(TIC80LIB)/libscheme.a \ 35 35 $(TIC80LIB)/libwren.a \ 36 36 $(TIC80LIB)/libwasm.a \ 37 + $(TIC80LIB)/libjanet.a \ 37 38 $(TIC80LIB)/libargparse.a \ 38 39 $(TIC80LIB)/libwave_writer.a \ 39 40 $(TIC80LIB)/libduktape.a \ ··· 55 56 $(CIRCLEHOME)/lib/sched/libsched.a \ 56 57 $(CIRCLEHOME)/lib/libcircle.a \ 57 58 $(NEWLIBDIR)/lib/libm.a 58 - 59 - # !TODO: temporary disabled janet script 60 - # $(TIC80LIB)/libjanet.a \