You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I doing the 7 step, It assert some errors:
1.function 'get_heap_end' which could not be resolved!
2.function 'malloc_real' which could not be resolved!
It seems the sgxbouds does not contain those functions realize,only contains declarations.
And I know malloc_real means "malloc" in glibc,But what get_heap_end is.
I can not find get_heap_end in glibc.
Need help,Thanks
The text was updated successfully, but these errors were encountered:
I have done this:
2.clang -c -emit-llvm runtime.c test.c
3.llvm-link runtime.bc test.bc > test-runtime.bc
4.opt -load ./sgxbouds.so < test-runtime.bc > test-sgx.bc -sgxbouds -enable-opt -debug
5.clang -c -emit-llvm wrappers.c
6.llvm-link test-sgx.bc wrappers.bc >test-result.bc
7,lli test-result.bc
when I doing the 7 step, It assert some errors:
1.function 'get_heap_end' which could not be resolved!
2.function 'malloc_real' which could not be resolved!
It seems the sgxbouds does not contain those functions realize,only contains declarations.
And I know malloc_real means "malloc" in glibc,But what get_heap_end is.
I can not find get_heap_end in glibc.
Need help,Thanks
The text was updated successfully, but these errors were encountered: