fixes license file and adds specific build option to linux
parent
75da51264d
commit
d191bcffea
|
@ -1,7 +1,7 @@
|
||||||
Licensing
|
Licensing
|
||||||
---------
|
---------
|
||||||
|
|
||||||
wolfSSL’s software is available under two distinct licensing models:
|
wolfSSL's software is available under two distinct licensing models:
|
||||||
open source and standard commercial licensing. Please see the relevant
|
open source and standard commercial licensing. Please see the relevant
|
||||||
section below for information on each type of license.
|
section below for information on each type of license.
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
import os
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
from contextlib import contextmanager
|
from contextlib import contextmanager
|
||||||
|
from distutils.util import get_platform
|
||||||
|
|
||||||
|
|
||||||
def local_path(path):
|
def local_path(path):
|
||||||
|
@ -105,7 +106,7 @@ def make_flags(prefix):
|
||||||
"""
|
"""
|
||||||
flags = []
|
flags = []
|
||||||
|
|
||||||
# extra CC flags
|
if get_platform() in ["linux-x86_64", "linux-i686"]:
|
||||||
flags.append("CFLAGS=-fpic")
|
flags.append("CFLAGS=-fpic")
|
||||||
|
|
||||||
# install location
|
# install location
|
||||||
|
|
Loading…
Reference in New Issue