Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2da048b
Add --jit option to execute without creation of executable file
Vipul-Cariappa Feb 29, 2024
5a96c18
execute global_init & global_stmts after checking their existence
Vipul-Cariappa Mar 8, 2024
8a0a847
CI fix & raise error for non-llvm backend with jit
Vipul-Cariappa Mar 8, 2024
895ae8f
combined `compile_python_to_object_file` and `execute_python_using_ji…
Vipul-Cariappa Mar 9, 2024
8659948
Add testing mechanism
Vipul-Cariappa Mar 10, 2024
602359a
Testing with cpython and symengine
Vipul-Cariappa Mar 19, 2024
4ae8463
skipping jit tests with external dependency
Vipul-Cariappa Mar 23, 2024
c138728
skipping testing JIT that depend on syms or cpython
Vipul-Cariappa Mar 23, 2024
31b4d02
support to use cpython and symengine with JIT
Vipul-Cariappa Mar 24, 2024
f1cd329
Trigger CI/CD
Vipul-Cariappa Mar 24, 2024
caec554
windows fix
Vipul-Cariappa Mar 24, 2024
ed6dd6e
WASM ci fix
Vipul-Cariappa Mar 24, 2024
3be9723
allow few tests to fail under `--jit`
Vipul-Cariappa Apr 1, 2024
ca42626
fix for #2595
Vipul-Cariappa Apr 4, 2024
4fdfe04
factored out loading cpython and symengine libraries
Vipul-Cariappa Apr 4, 2024
cbac670
wasm related fix
Vipul-Cariappa Apr 4, 2024
a35dc02
windows ci fix
Vipul-Cariappa Apr 4, 2024
f6f62b9
windows ci fix
Vipul-Cariappa Apr 4, 2024
ff5ac20
windows ci fix
Vipul-Cariappa Apr 4, 2024
ea044d5
updated for consistency
Vipul-Cariappa Apr 16, 2024
5ae201e
updated for consistency
Vipul-Cariappa Apr 17, 2024
6d9432b
Apply suggestions from code review
Vipul-Cariappa Apr 17, 2024
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
Prev Previous commit
Next Next commit
WASM ci fix
  • Loading branch information
Vipul-Cariappa committed Apr 20, 2024
commit ed6dd6e09901f4fa8d485c4817eb2463e1fd8891
2 changes: 1 addition & 1 deletion src/bin/lpython.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#if (defined (__linux__)) or (defined (__APPLE__))
#include <dlfcn.h>
#else
#elif (defined (WIN32))
#include <windows.h>
#endif

Expand Down