2a3f998827
Dev — Build & local smoke test / build-smoke (pull_request) Failing after 13m24s
Add window/neuronCheckoutFree stubs to web_stubs.c — needed to link without undefined symbol errors on macOS (vessel stubs were already handled, web platform stubs were not). Add c_source directives to manifest.el so elb includes web_stubs.c and vessel_stubs.c in the link — requires the matching elb update in foundation/el PR #46. Move gallery_share_allowlist from module scope into gallery_page() to prevent elc from emitting a second main() for the gallery module, which caused a duplicate-symbol link error when combined with main.el. Update elc-linux-amd64 binary (rebuilt with RBrace fix from PR #46).
15 lines
333 B
EmacsLisp
15 lines
333 B
EmacsLisp
package "neuron-landing" {
|
|
version "1.0.0"
|
|
description "Neuron marketing landing page server"
|
|
authors ["Will Anderson <will.anderson@neurontechnologies.ai>"]
|
|
edition "2026"
|
|
}
|
|
|
|
build {
|
|
target "release"
|
|
entry "src/main.el"
|
|
output "dist/"
|
|
c_source "dist/web_stubs.c"
|
|
c_source "dist/vessel_stubs.c"
|
|
}
|