metaeducation / ren-c

Library for embedding a Rebol interpreter into C codebases
GNU Lesser General Public License v3.0
126 stars 27 forks source link

build fails with 1d013ec22 #1112

Closed MarkoSchuetz closed 3 years ago

MarkoSchuetz commented 3 years ago

I get

"$R3_MAKE" ../make.r \
        config: ../configs/default-config.r \
        debug: asserts \
        optimize: 2

definitions: [
    "OS_STACK_GROWS_DOWN" "ENDIAN_LITTLE" "HAS_LL_CONSTS" "_FILE_OFFSET_BITS=64" "USE_PIPE2_NOT_PIPE" "__LP64__"]
includes: [%../src/include/ %prep/include/]
libraries: [make object! [
    [class output flags]
    [
        class: #dynamic-extension
        output: <gnu:m>
        flags: _
    ]
] make object! [
    [class output flags]
    [
        class: #dynamic-extension
        output: "dl"
        flags: _
    ]
]]
cflags: [<gnu:-fvisibility=hidden>]
ldflags: [<gnu:-fvisibility=hidden> <gnu:-rdynamic>]
debug: false
optimization: 2
Builtin extensions
ext: BMP: []
ext: Console: []
ext: Crypt: []
ext: Debugger: []
ext: DNS: []
ext: Event: []
ext: Filesystem: []
ext: GIF: []
ext: Gob: []
ext: Image: []
ext: JPG: []
ext: Library: []
ext: Locale: []
ext: Network: []
ext: PNG: []
ext: Process: []
ext: Serial: []
ext: Stdio: []
ext: Time: []
ext: UTF: []
ext: UUID: []
ext: Vector: []
ext: View: []
Dynamic extensions
** Script Error: name has no value
** Where: reify for-each either switch run-target switch run for-each switch run switch _ do _ iterate do catch either else _ do
** Near: [... false
    let name ~~
    let val
    while ...]
** File: bootstrap-shim.r
** Line: 159

** Hit Ctrl-C to break into the console in 5 seconds
5....4....3....2....1....

when trying to build.

kealist commented 3 years ago

I also just tried compiling and had this error on Windows r3-make.exe ../make.r config: ../configs/default-config.r debug: asserts (using a downloaded/renamed prebuilt)

hostilefork commented 3 years ago

Whoops. Sorry, oversight.

Hopefully this addresses it:

https://github.com/metaeducation/ren-c/commit/780c754d994665822fbeab7b8c7a5a0c80b52f99

kealist commented 3 years ago

Worked for me, thanks!

MarkoSchuetz commented 3 years ago

For me too, thanks!