]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Remove optimizations
authorGeorge Lu <gclu@fb.com>
Tue, 5 Jun 2018 21:41:41 +0000 (14:41 -0700)
committerGeorge Lu <gclu@fb.com>
Tue, 5 Jun 2018 21:41:41 +0000 (14:41 -0700)
circle.yml

index 8c69f5944a32237e3264aa62dd3a896e61ddcac1..df5f5547b16442094f59a7b97bd254d1cefaea90 100644 (file)
@@ -42,10 +42,10 @@ test:
       :
         parallel: true
     - ? |
-        if [[ "$CIRCLE_NODE_INDEX" == "0" ]]                                    ; then ZSTD_LIB_COMPRESSION=0 make -C lib libzstd.a; nm lib/libzstd.a | grep ".*\.o:" > tmplog; 
+        if [[ "$CIRCLE_NODE_INDEX" == "0" ]]                                    ; then ZSTD_LIB_COMPRESSION=0 CFLAGS= make -C lib libzstd.a; nm lib/libzstd.a | grep ".*\.o:" > tmplog; 
                                                                                   ! grep "zstd_compress" tmplog && grep "zstd_decompress" tmplog && ! grep "dict" tmplog \
                                                                                   && grep "zstd_v" tmplog && make clean && rm tmplog; fi &&
-        if [[ "$CIRCLE_NODE_TOTAL" < "2" ]] || [[ "$CIRCLE_NODE_INDEX" == "1" ]]; then ZSTD_LIB_DECOMPRESSION=0 make -C lib libzstd.a; nm lib/libzstd.a | grep ".*\.o:" > tmplog; 
+        if [[ "$CIRCLE_NODE_TOTAL" < "2" ]] || [[ "$CIRCLE_NODE_INDEX" == "1" ]]; then ZSTD_LIB_DECOMPRESSION=0 CFLAGS= make -C lib libzstd.a; nm lib/libzstd.a | grep ".*\.o:" > tmplog; 
                                                                                   grep "zstd_compress" tmplog && ! grep "zstd_decompress" tmplog && grep "dict" tmplog && \
                                                                                   ! grep "zstd_v" tmplog && make clean && rm tmplog; fi
       :