mirror of
https://github.com/xoseperez/espurna.git
synced 2026-02-20 09:41:35 +01:00
10 lines
268 B
Python
10 lines
268 B
Python
import os
|
|
|
|
|
|
def ldscripts_inject_libpath(env):
|
|
platform = env.PioPlatform()
|
|
framework_dir = platform.get_package_dir("framework-arduinoespressif8266")
|
|
|
|
libpath_base = os.path.join("$PROJECT_DIR", "..", "dist", "ld")
|
|
env.Prepend(LIBPATH=[libpath_base])
|