Properly export CC variable in Makefile
We cannot use ?= because CC is set by default to "cc". Therefore CC was never set. In addition we need to export the variable in order to have the rust cc crate pick it up. Otherwise it is only used by openlibm where it is explicitly passed.
Please register or sign in to comment