Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
</head>
<body>
<label for="raylib-example-select">Choose an Example:</label>
<select id="raylib-example-select" onchange="startRaylib(this.value)">
<select id="raylib-example-select" onchange="startRaylib(this.value)">
<!-- This is populated by js -->
</select>
</select>
<canvas id="game"></canvas>
<script>
const wasmPaths = {
Expand Down
1 change: 1 addition & 0 deletions nob.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ bool build_wasm(void)
nob_cmd_append(&cmd, "-I./include");
nob_cmd_append(&cmd, "--no-standard-libraries");
nob_cmd_append(&cmd, "-Wl,--export-table");
nob_cmd_append(&cmd, "-Wl,--export=__heap_base");
nob_cmd_append(&cmd, "-Wl,--no-entry");
nob_cmd_append(&cmd, "-Wl,--allow-undefined");
nob_cmd_append(&cmd, "-Wl,--export=main");
Expand Down
Loading