Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. dzan@x200:~/mozart$ make install
  2. dirs="platform share contrib doc"; \
  3. for i in $dirs; do \
  4. if (cd $i && make install); \
  5. then true; \
  6. else exit 1; \
  7. fi; \
  8. done
  9. make[1]: Map '/home/dzan/mozart/platform' wordt binnengegaan
  10. dirs="dss emulator wish tools"; \
  11. for i in $dirs; do \
  12. if (cd $i && make install); \
  13. then true; \
  14. else exit 1; \
  15. fi; \
  16. done
  17. make[2]: Map '/home/dzan/mozart/platform/dss' wordt binnengegaan
  18. g++ -march=x86_64 -mtune=x86_64 -O3 -fomit-frame-pointer -funsigned-char -I. -I./include -fno-exceptions -Winline -Weffc++ -Wall -Wold-style-cast -Woverloaded-virtual -Wshadow -c -o base.o ./src/base.cc
  19. ./src/base.cc:1: error: bad value (x86_64) for -march= switch
  20. ./src/base.cc:1: error: bad value (x86_64) for -mtune= switch
  21. make[2]: *** [base.o] Fout 1
  22. make[2]: Map '/home/dzan/mozart/platform/dss' wordt verlaten
  23. make[1]: *** [install] Fout 1
  24. make[1]: Map '/home/dzan/mozart/platform' wordt verlaten
  25. make: *** [install] Fout 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement