diff options
author | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-12 18:33:37 +0100 |
---|---|---|
committer | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-13 11:29:15 +0100 |
commit | 49c0bfa3adcceb25886d879c54c08ba9b93f6488 (patch) | |
tree | 87188bf705378ab6e6ab19a5041897a4a8891f37 | |
parent | ed2c577592e1547e63a840b1e7a119c20387a7bd (diff) | |
download | yosys-49c0bfa3adcceb25886d879c54c08ba9b93f6488.tar.gz yosys-49c0bfa3adcceb25886d879c54c08ba9b93f6488.tar.bz2 yosys-49c0bfa3adcceb25886d879c54c08ba9b93f6488.zip |
- kernel/register.h, kernel/driver.cc: refactor rewrite_yosys_exe()/get_share_file_name() to portable proc_self_dirname()/proc_share_dirname().
This refactoring improves robustness and allows OSX support with only 7 new lines of code, and easy extension for other systems.
- passes/abc/abc.cc, passes/cmds/show.cc, passes/techmap/techmap.cc: use new, refactored semantics.
- Makefile: no need to add $(PWD) to $(PATH) anymore.
-rw-r--r-- | Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -26,8 +26,6 @@ CXXFLAGS = -Wall -Wextra -ggdb -I"$(shell pwd)" -I${DESTDIR}/include -MD -D_YOSY LDFLAGS = -L${DESTDIR}/lib LDLIBS = -lstdc++ -lreadline -lm -ldl -export PATH := $(PWD):$(DESTDIR)/bin:$(PATH) - ifeq (Darwin,$(findstring Darwin,$(shell uname))) # add macports include and library path to search directories, don't use '-rdynamic' and '-lrt': CXXFLAGS += -I/opt/local/include |