Skip to content

Commit

Permalink
build: interrupted to make cuda-sim target due to unsuccessful `chmod…
Browse files Browse the repository at this point in the history
… -w`

running `chmod -w instructions.h` in Ubuntu 19.10 outputs:

"new permissions are r-xrwxrwx, not r-xr-xr-x" and exit with failure
status.
  • Loading branch information
luc committed May 1, 2020
1 parent e7fbfaa commit 5f7a020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cuda-sim/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ $(OUTPUT_DIR)/instructions.h: instructions.cc
@echo "#define instructions_h_included" >> $*.h
@cat $< | grep "_impl(" | sed 's/{.*//' | sed 's/$$/;/' >> $*.h
@echo "#endif" >> $*.h
@chmod -w $*.h
@chmod a-w $*.h
@echo "created $(OUTPUT_DIR)/instructions.h"

$(OUTPUT_DIR)/ptx_parser_decode.def: $(OUTPUT_DIR)/ptx.tab.c
Expand Down

0 comments on commit 5f7a020

Please sign in to comment.