Ver código fonte

Dockerfile: avoid -march=native compiler flag

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@73690 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 6 anos atrás
pai
commit
824646bd47
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -77,7 +77,7 @@ COPY . /code/grass
 WORKDIR /code/grass
 
 # Set gcc/g++ environmental variables for GRASS GIS compilation, without debug symbols
-ENV MYCFLAGS "-O2 -march=native -std=gnu99 -m64"
+ENV MYCFLAGS "-O2 -std=gnu99 -m64"
 ENV MYLDFLAGS "-s"
 # CXX stuff:
 ENV LD_LIBRARY_PATH "/usr/local/lib"