20urc3
20urc3
Sure, when building dependencies with the scripts build_deps.py (in /scripts) it errors `gcc: error: unrecognized command line option ‘-m486’` In `/sgxwallet/sgx-gmp/mpn/Makefile` There is the line `CFLAGS_CPU = -mtune=k8 -mcpu=athlon -mcpu=pentiumpro...
It seems that running the script is creating the makefile in sgx-gmp, thus adding again the problematic line "-m486"
The exact part of the script that create issue: ```python assert subprocess.call(["bash", "-c", "./configure --prefix=" + TGMP_BUILD_DIR + " --disable-shared --enable-static --with-pic --enable-sgx --with-sgxsdk=" + SDK_DIR + "/sgxsdk"]> assert subprocess.call(["make",...
My workaround was to comment the part i mentionned above. Then i use this command to remove "-m486" from configure and makefile: `sed -i 's/-m486//g' filename` and then I run...